X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=js.php;h=35600b378091bf06d9927baae207f1458eb921f2;hb=9553dbc9eed40bfa2beffa79813f2d5cd21fa8ac;hp=b1d8ce6118892617ef9b17b886db5b32fd55c183;hpb=09f5758c42a33a56bdd461c946ffe759a59c54aa;p=mailer.git diff --git a/js.php b/js.php index b1d8ce6118..35600b3780 100644 --- a/js.php +++ b/js.php @@ -56,8 +56,9 @@ $GLOBALS['module'] = 'js'; // Load the required file(s) require('inc/config-global.php'); -// Set header +// Set header and HTTP status setContentType('text/javascript'); +setHttpStatus('404 NOT FOUND'); // Is 'js' is provied? if (isGetRequestParameterSet('js')) { @@ -71,6 +72,9 @@ if (isGetRequestParameterSet('js')) { // Is that file readable? if (isIncludeReadable($inc)) { + // Okay, found + setHttpStatus('200 OK'); + // Include it loadIncludeOnce($inc); } // END - if