Small tweak for NeoGallery 0.1.1
Posted: Mon Nov 17, 2008 8:32 pm
I have jsut installed NeoGallery and wanted to link directly to one specific gallery from another place on my page. So I added made a small modification.
In action.default.php I replaced this codewith
You can read more about this modification in my blog: http://slikjegserdet.wordpress.com/2008/11/17/neogallery-link-to-a-album/
Good luck!
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!