]> git.mxchange.org Git - mailer.git/blobdiff - inc/wrapper-functions.php
WARNING: id is very generic, it has been now renamed to booking_id, please fix your...
[mailer.git] / inc / wrapper-functions.php
index 31e30cbefe98f21f223b82595b9e59b4244f8fe7..aaa89c15ddb53d2d03909ed1188ba5fb7c82e5fa 100644 (file)
@@ -1222,6 +1222,7 @@ function getTotalConfirmedUser () {
        } // END - if
 
        // Return cached value
+       //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, __FUNCTION__ . '()=' . $GLOBALS[__FUNCTION__]);
        return $GLOBALS[__FUNCTION__];
 }
 
@@ -1238,6 +1239,7 @@ function getTotalUnconfirmedUser () {
        } // END - if
 
        // Return cached value
+       //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, __FUNCTION__ . '()=' . $GLOBALS[__FUNCTION__]);
        return $GLOBALS[__FUNCTION__];
 }
 
@@ -1254,6 +1256,7 @@ function getTotalLockedUser () {
        } // END - if
 
        // Return cached value
+       //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, __FUNCTION__ . '()=' . $GLOBALS[__FUNCTION__]);
        return $GLOBALS[__FUNCTION__];
 }
 
@@ -1270,6 +1273,7 @@ function getTotalRandomRefidUser () {
        } // END - if
 
        // Return cached value
+       //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, __FUNCTION__ . '()=' . $GLOBALS[__FUNCTION__]);
        return $GLOBALS[__FUNCTION__];
 }
 
@@ -2817,6 +2821,9 @@ function convertCommaToDotInPostData ($postEntry) {
        // Read and convert given entry
        $postValue = convertCommaToDot(postRequestElement($postEntry));
 
+       // Log message
+       //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'postEntry=' . $postEntry . ',postValue=' . $postValue);
+
        // ... and set it again
        setPostRequestElement($postEntry, $postValue);
 }