From 47336e4f8d03671b57c56c1f72f192a21e010dce Mon Sep 17 00:00:00 2001 From: Chris Morgan Date: Wed, 26 Oct 2005 22:54:30 +0000 Subject: [PATCH] Fix unknown function isLoggedIn() to be $this->isLoggedIn() --- include/user.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/user.php b/include/user.php index e82f15f..0dd8f55 100644 --- a/include/user.php +++ b/include/user.php @@ -779,7 +779,7 @@ class User { */ function canCreateApplication() { - return isLoggedIn(); + return $this->isLoggedIn(); } /**