In action.default.php I replaced this code
Code: Select all
$gid=$this->GetPreference(”defaultgallery”); Code: Select all
if ($_REQUEST["g"] > 0) { $gid=$_REQUEST["g"]; } else { $gid=$this->GetPreference(”defaultgallery”); }Good luck!

Code: Select all
$gid=$this->GetPreference(”defaultgallery”); Code: Select all
if ($_REQUEST["g"] > 0) { $gid=$_REQUEST["g"]; } else { $gid=$this->GetPreference(”defaultgallery”); }