Posted on: 10/09/02 01:54pm
By: Anonymous (cdriscoll)
I am wondering if someone can assist me. I am running geeklog on a Windows 2000 Server box with IIS (I know...slap me at will). I am getting the following error when trying to add a new photo album. Any help is much appreciated
Fatal error: Call to a member function on a non-object in c:\inetpub\wwwroot\gallery\classes\User.php on line 155
Fatal error: Call to a member function on a non-object
Posted on: 10/10/02 07:30am
By: Anonymous (cdriscoll)
Sorry, here is the code it is referring to.
function canCreateSubAlbum($album) {
if ($this->isAdmin()) {
return true;
}
if ($album->canCreateSubAlbum($this->uid)) {
return true;
}
return false;
}