diff --git a/inc/mod/pages.php b/inc/mod/pages.php index f743528f..3e0967f1 100644 --- a/inc/mod/pages.php +++ b/inc/mod/pages.php @@ -911,10 +911,11 @@ function mod_ip(Context $ctx, $ip, string $encoded_cursor = null) { return; } + // Temporary Redirect so to not to break the note and unban system. if (empty($encoded_cursor)) { - \header("Location: ?/user_posts/ip/$ip", true, 308); + \header("Location: ?/user_posts/ip/$ip", true, 307); } else { - \header("Location: ?/user_posts/ip/$ip/cursor/$encoded_cursor", true, 308); + \header("Location: ?/user_posts/ip/$ip/cursor/$encoded_cursor", true, 307); } }