aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/users.php
diff options
context:
space:
mode:
authorben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-06-18 17:10:59 +0000
committerben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-06-18 17:10:59 +0000
commit8f78070af36c61b491eac60ebc37eb164ee5e1ba (patch)
tree6ec6369068c3f5511a2412fff4a00130274366b0 /engine/lib/users.php
parent6ec031da49c50d3c6e3e35397ddc6de35cbf9384 (diff)
downloadelgg-8f78070af36c61b491eac60ebc37eb164ee5e1ba.tar.gz
elgg-8f78070af36c61b491eac60ebc37eb164ee5e1ba.tar.bz2
Removing some error notices
git-svn-id: https://code.elgg.org/elgg/trunk@978 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/users.php')
-rw-r--r--engine/lib/users.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/lib/users.php b/engine/lib/users.php
index 4445f485f..51cb748c5 100644
--- a/engine/lib/users.php
+++ b/engine/lib/users.php
@@ -320,7 +320,7 @@
if ($row)
{
// We have already cached this object, so retrieve its value from the cache
- if ($CONFIG->debug)
+ if (isset($CONFIG->debug) && $CONFIG->debug == true)
error_log("** Retrieving sub part of GUID:$guid from cache");
return $row;
@@ -328,7 +328,7 @@
else
{
// Object not cached, load it.
- if ($CONFIG->debug)
+ if (isset($CONFIG->debug) && $CONFIG->debug == true)
error_log("** Sub part of GUID:$guid loaded from DB");
$guid = (int)$guid;