From c561b7ba86f69ff570b311d895f8324cd3241ecd Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Mon, 4 Jul 2011 00:04:52 +0000 Subject: [PATCH] Parse error fixed #2 --- 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 ed8fad086b..12f81a8345 100644 --- a/inc/wrapper-functions.php +++ b/inc/wrapper-functions.php @@ -951,7 +951,7 @@ function getUserData ($column) { // Checks wether given user data is set to 'Y' function isUserDataEnabled ($column) { // Do we have cache? - if (!isset($GLOBALS[__FUNCTION__][getCurrentUserId()][$column])) + if (!isset($GLOBALS[__FUNCTION__][getCurrentUserId()][$column])) { // Determine it $GLOBALS[__FUNCTION__][getCurrentUserId()][$column] = (getUserData($column) == 'Y'); } // END - if -- 2.39.5