Fix unknown function isLoggedIn() to be $this->isLoggedIn()

This commit is contained in:
Chris Morgan
2005-10-26 22:54:30 +00:00
committed by WineHQ
parent 61f29dc94d
commit 47336e4f8d

View File

@@ -779,7 +779,7 @@ class User {
*/
function canCreateApplication()
{
return isLoggedIn();
return $this->isLoggedIn();
}
/**