A lot has been rewritten, ext-teams added, ext-forced continued:
[mailer.git] / inc / request-functions.php
index 86db766d4273a63ad71a3637c01d3c053db839c6..b82c12a7ef810354de2ee467316fbd487511a8e3 100644 (file)
@@ -49,7 +49,7 @@ function initRequest () {
 // Wrapper for elements in $_GET
 function getRequestParameter ($element) {
        // By default no element is there
-       $value = null;
+       $value = NULL;
 
        // Is the element cached or there?
        if (isset($GLOBALS['cache_request']['get'][$element])) {
@@ -119,7 +119,7 @@ function setGetRequestParameter ($element, $value) {
 // Wrapper for elements in $_POST
 function postRequestParameter ($element, $subElement=null) {
        // By default no element is there
-       $value = null;
+       $value = NULL;
 
        // Is the element in cache?
        if (isset($GLOBALS['cache_request']['post'][$element][$subElement])) {