]> git.mxchange.org Git - mailer.git/blobdiff - inc/wrapper-functions.php
Missing HTTP status set, some minor rewrites
[mailer.git] / inc / wrapper-functions.php
index 74f30d01b012a6e43b215658adaa12cdbf630e72..d910f8da2d136956ea73ca75feb66e755fc98666 100644 (file)
@@ -945,6 +945,13 @@ function setHttpStatus ($status) {
 
 // Getter for HTTP status
 function getHttpStatus () {
+       // Is the status set?
+       if (!isset($GLOBALS['http_status'])) {
+               // Abort here
+               debug_report_bug(__FUNCTION__, __LINE__, 'No HTTP status set!');
+       } // END - if
+
+       // Return it
        return $GLOBALS['http_status'];
 }