In include/functions.inc.php, FIND (around line 2681):
Code: Select all
$filename = ltrim(strrchr($_SERVER['PHP_SELF'], '/'), '/');
Code: Select all
$filename = ltrim(strrchr('/' . $_SERVER['PHP_SELF'], '/'), '/');
Code: Select all
$iframe_startfolder .= str_replace('searchnew.php', '', __FILE__).rtrim($CONFIG['fullpath'], '/').'/';
Code: Select all
$iframe_startfolder .= rtrim($CONFIG['fullpath'], '/').'/';
Code: Select all
print '<a href="'.$linktarget.'?startdir='.rtrim(str_replace($_REQUEST['limitfolder'], '',$folder), '/').'"
Code: Select all
print '<a href="'.$linktarget.'?startdir='.trim(str_replace($_REQUEST['limitfolder'], '',$folder), '/').'"