From b46599dfbb4c7acee68930195fa51c8cf136cb13 Mon Sep 17 00:00:00 2001 From: quix0r Date: Mon, 4 Jul 2011 00:03:40 +0000 Subject: [PATCH] Parse error fixed --- inc/wrapper-functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/wrapper-functions.php b/inc/wrapper-functions.php index d73e687bf2..ed8fad086b 100644 --- a/inc/wrapper-functions.php +++ b/inc/wrapper-functions.php @@ -953,7 +953,7 @@ function isUserDataEnabled ($column) { // Do we have cache? if (!isset($GLOBALS[__FUNCTION__][getCurrentUserId()][$column])) // Determine it - $GLOBALS[__FUNCTION__][getCurrentUserId()][$column] = (getUserData($column) == 'Y') + $GLOBALS[__FUNCTION__][getCurrentUserId()][$column] = (getUserData($column) == 'Y'); } // END - if // Return cache -- 2.39.5