From 9edea7928e8de1d9cbf592996d96b8e797d2463f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Thu, 5 Nov 2009 16:29:31 +0000 Subject: [PATCH] Function name added to debug output --- inc/wrapper-functions.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/inc/wrapper-functions.php b/inc/wrapper-functions.php index 0b213f3ec9..763a41d1f7 100644 --- a/inc/wrapper-functions.php +++ b/inc/wrapper-functions.php @@ -711,7 +711,7 @@ function setAdminHash ($admin, $hash) { // Init user data array function initUserData () { // User id should not be zero - if (getCurrentUserId() == '0') debug_report_bug('User id is zero.'); + if (getCurrentUserId() == '0') debug_report_bug(__FUNCTION__.': User id is zero.'); // Init the user $GLOBALS['user_data'][getCurrentUserId()] = array(); @@ -720,7 +720,7 @@ function initUserData () { // Getter for user data function getUserData ($column) { // User id should not be zero - if (getCurrentUserId() == '0') debug_report_bug('User id is zero.'); + if (getCurrentUserId() == '0') debug_report_bug(__FUNCTION__.': User id is zero.'); // Return the value return $GLOBALS['user_data'][getCurrentUserId()][$column]; @@ -729,7 +729,7 @@ function getUserData ($column) { // Geter for whole user data array function getUserDataArray () { // User id should not be zero - if (getCurrentUserId() == '0') debug_report_bug('User id is zero.'); + if (getCurrentUserId() == '0') debug_report_bug(__FUNCTION__.': User id is zero.'); // Get the whole array return $GLOBALS['user_data'][getCurrentUserId()]; @@ -739,7 +739,7 @@ function getUserDataArray () { // in, but you should use isMember() if you want to find that out. function isUserDataValid () { // User id should not be zero - if (getCurrentUserId() == '0') debug_report_bug('User id is zero.'); + if (getCurrentUserId() == '0') debug_report_bug(__FUNCTION__.': User id is zero.'); // Is the array there and filled? return ((isset($GLOBALS['user_data'][getCurrentUserId()])) && (count($GLOBALS['user_data'][getCurrentUserId()]) > 1)); -- 2.30.2