From fa638bd7af2a9f429325f361e52d5b253aa5a9d2 Mon Sep 17 00:00:00 2001 From: Chris Morgan Date: Sun, 9 Oct 2005 18:09:35 +0000 Subject: [PATCH] hasDataAssociated() is a user internal call, call like $this->hasDataAssociated() instead of hasDataAssociated() --- include/user.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/user.php b/include/user.php index 9e85720..8668e42 100644 --- a/include/user.php +++ b/include/user.php @@ -703,7 +703,7 @@ class User { function warnForInactivity() { /* we don't want to warn users that have data associated with them */ - if(hasDataAssociated()) + if($this->hasDataAssociated()) { return; }