You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To reproduce, search for a term against a specific forum or forums. The search URL will include the fid%5B%5 D= parameter for the first page, but the encoded [] will be stripped off subsequent pages.
Below is a workaround, not a correction. Modify phpbbseo/usu/pagination:
public function generate_page_link($base_url, $on_page, $start_name, $per_page)
{
// ADD: Workaround problem with "fid" getting mangled.
if (strpos($base_url, 'search.php') !== false) {
$base_url = str_replace('fid%5B%5D=', 'fid[]=', $base_url);
}
This prevents the subsequent code for mangling the fid parameter. Restore it prior to returning:
// we'll see if start_name has use cases, and we can still work with rewriterules
$s = ($on_page > 1) ? sprintf($paginated[$base_url], $start_name, ($on_page - 1) * $per_page) : $base_url;
// ADD: Workaround problem with "fid" getting mangled.
if (strpos($base_url, 'search.php') !== false) {
$s = str_replace('fid[]=', 'fid%5B%5D=', $s);
}
return $s;
The text was updated successfully, but these errors were encountered:
To reproduce, search for a term against a specific forum or forums. The search URL will include the fid%5B%5 D= parameter for the first page, but the encoded [] will be stripped off subsequent pages.
Below is a workaround, not a correction. Modify phpbbseo/usu/pagination:
This prevents the subsequent code for mangling the fid parameter. Restore it prior to returning:
The text was updated successfully, but these errors were encountered: