Quote:
Originally Posted by TheWindows7Site
Nvm, Ive figured out why the links are messed up.
Open up ./includes/class_core.php
Go to line: 2640
Find:
PHP Code:
// save
if (!$path)
{
$this->registry->relpath = $relpath;
}
return $relpath;
}
Replace With:
PHP Code:
// save
if (!$path)
{
$this->registry->relpath = $relpath;
}
if ($fragment = parse_url($path, PHP_URL_FRAGMENT))
{
$relpath .= '#' . $fragment;
}
return $relpath;
}
Enjoy! 
|
Thanks for the post but i havent got that code to find in my class_core.php
this has got me why not.