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!