]> git.mxchange.org Git - mailer.git/commitdiff
More usage of isValidUserId()
authorRoland Häder <roland@mxchange.org>
Sun, 1 Aug 2010 07:30:16 +0000 (07:30 +0000)
committerRoland Häder <roland@mxchange.org>
Sun, 1 Aug 2010 07:30:16 +0000 (07:30 +0000)
inc/libs/sponsor_functions.php
inc/mysql-manager.php
inc/wrapper-functions.php

index bba582eb3f8e266a1b6aa8a0398f27918ea061e2..faca46db8506fa7d15fb4a6c0c0963c6aff83642 100644 (file)
@@ -661,7 +661,7 @@ function fetchSponsorData ($sponsor_id, $column = 'id') {
                setCurrentSponsorId($sponsor_id);
 
                // Don't look for invalid sponsor_ids...
-               if ($sponsor_id < 1) {
+               if (!isValidUserId($sponsor_id)) {
                        // Invalid, so abort here
                        debug_report_bug(__FUNCTION__, __LINE__, 'Sponsor id ' . $sponsor_id . ' is invalid.');
                } elseif (isSponsorDataValid()) {
@@ -815,7 +815,9 @@ function isValidSponsorId ($sponsor_id) {
 // Getter for sponsor data
 function getSponsorData ($column) {
        // Sponsor id should not be zero
-       if (getCurrentSponsorId() < 1) debug_report_bug(__FUNCTION__, __LINE__, 'Sponsor id is zero.');
+       if (!isValidUserId(getCurrentSponsorId())) {
+               debug_report_bug(__FUNCTION__, __LINE__, 'Sponsor id is zero.');
+       } // END - if
 
        // Return the value
        return $GLOBALS['sponsor_data'][getCurrentSponsorId()][$column];
index 8fadc7f8839f9effbf0c251c10cf632b34ac35e1..4ff3a8cd7b585d64a49192b0ffef40e0cb46b27d 100644 (file)
@@ -442,7 +442,7 @@ function fetchUserData ($userid, $column = 'userid') {
                setCurrentUserId($userid);
 
                // Don't look for invalid userids...
-               if ($userid < 1) {
+               if (!isValidUserId($userid)) {
                        // Invalid, so abort here
                        debug_report_bug(__FUNCTION__, __LINE__, 'User id ' . $userid . ' is invalid.');
                } elseif (isUserDataValid()) {
index c6d6d4b1d82243f527530944c780c189510361c5..8a85b56b5ec6d5684b26b33075e3da23b9a7e052 100644 (file)
@@ -804,7 +804,10 @@ function setAdminHash ($adminId, $hash) {
 // Init user data array
 function initUserData () {
        // User id should not be zero
-       if (getCurrentUserId() < 1) debug_report_bug(__FUNCTION__, __LINE__, 'User id is zero.');
+       if (!isValidUserId(getCurrentUserId())) {
+               // Should be always valid
+               debug_report_bug(__FUNCTION__, __LINE__, 'User id is zero.');
+       } // END - if
 
        // Init the user
        $GLOBALS['user_data'][getCurrentUserId()] = array();
@@ -813,7 +816,10 @@ function initUserData () {
 // Getter for user data
 function getUserData ($column) {
        // User id should not be zero
-       if (getCurrentUserId() < 1) debug_report_bug(__FUNCTION__, __LINE__, 'User id is zero.');
+       if (!isValidUserId(getCurrentUserId())) {
+               // Should be always valid
+               debug_report_bug(__FUNCTION__, __LINE__, 'User id is zero.');
+       } // END - if
 
        // Return the value
        return $GLOBALS['user_data'][getCurrentUserId()][$column];
@@ -822,18 +828,18 @@ function getUserData ($column) {
 // Geter for whole user data array
 function getUserDataArray () {
        // Get user id
-       $uid = getCurrentUserId();
+       $userid = getCurrentUserId();
 
        // Is the current userid valid?
-       if (!isValidUserId($uid)) {
+       if (!isValidUserId($userid)) {
                // Should be always valid
-               debug_report_bug(__FUNCTION__, __LINE__, 'User id is zero.');
+               debug_report_bug(__FUNCTION__, __LINE__, 'User id is invalid.');
        } // END - if
 
        // Get the whole array if found
-       if (isset($GLOBALS['user_data'][$uid])) {
+       if (isset($GLOBALS['user_data'][$userid])) {
                // Found, so return it
-               return $GLOBALS['user_data'][$uid];
+               return $GLOBALS['user_data'][$userid];
        } else {
                // Return empty array
                return array();