Hello all,
may be I fund problem, but I would like discuss it, if I fixed it correctly. My opinion is that bug is in sef_ext.php ( JoomSEF v1.2.5 ).
Function sefGetLocation() is called with url which contains URI->anchor. Question is, if the bug is in this function or function which calls sefGetLocation().
I fixed function sefGetLocation() with following lines on the begin of function:
$URI_anchor = strrchr($url, "#");
if ( $URI_anchor !== FALSE)
{
$url = substr($url, 0, strlen($url) - strlen($URI_anchor));
}
Best Regards,
Zdenek