]> git.mxchange.org Git - mailer.git/commitdiff
Parse error fixed #2
authorRoland Häder <roland@mxchange.org>
Mon, 4 Jul 2011 00:04:52 +0000 (00:04 +0000)
committerRoland Häder <roland@mxchange.org>
Mon, 4 Jul 2011 00:04:52 +0000 (00:04 +0000)
inc/wrapper-functions.php

index ed8fad086bb4ad58d4f96dedf18b521f6637ac89..12f81a83453d05602234985bb081864885dc6dec 100644 (file)
@@ -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