]> git.mxchange.org Git - mailer.git/commitdiff
fetchUserData() does not accept NULL, please report any findings
authorRoland Häder <roland@mxchange.org>
Thu, 28 Jul 2011 21:55:02 +0000 (21:55 +0000)
committerRoland Häder <roland@mxchange.org>
Thu, 28 Jul 2011 21:55:02 +0000 (21:55 +0000)
inc/mysql-manager.php

index 51fb3de99dcbfb4adc2dd805352f6d3091c57088..6ceef81e5ff0dd7e415e0aa2a682555652fecc38 100644 (file)
@@ -451,7 +451,10 @@ function fetchUserData ($value, $column = 'userid') {
        if (!isExtensionActive('user')) {
                // Absent ext-user is really not good
                return false;
-       } // END - if
+       } elseif (is_null($value)) {
+               // This shall never happen, so please report it
+               debug_report_bug(__FUNCTION__, __LINE__, 'value=NULL,column=' . $column . ' - value can never be NULL');
+       }
 
        // If we should look for userid secure&set it here
        if (substr($column, -2, 2) == 'id') {