Ultimate SEO URLs page navigation bug
On product result page, navigation links not working after Ultimate SEO URLs installed. We found solution to fix this bug. See below:
file:\includes\classes\seo.class.php
line : 1064 to1073
function requested_page()
{
$protocol = ((int) $_SERVER[’SERVER_PORT’] === 443)? ‘https://’ : ‘http://’;
$current_page = $protocol . $_SERVER[’HTTP_HOST’] . ((!empty($_SERVER[’REQUEST_URI’]))? $_SERVER[’REQUEST_URI’] : ”);
$current_page = substr($current_page, strlen(HTTP_SERVER));
if (($pos = strpos($current_page, “?osCsid”)) !== FALSE)
$current_page = substr($current_page, 0, $pos).’<br>’;
if ($current_page[0] == “/”)
$current_page = substr($current_page, 1);
Changed return $current_page;
to:
return $return;
Posted by admin
10.Feb.08
You can leave a response, or trackback from your own site.

















