New naming convention applied to many functions, see #118 for details
[mailer.git] / inc / request-functions.php
index b8f862fee9011d8409d4da0675298e8cd362ec87..e88d7c9860c2bc02096c11de1e67c167078be79b 100644 (file)
@@ -64,7 +64,7 @@ function REQUEST_GET ($element) {
 }
 
 // Checks if an element in $_GET exists
-function REQUEST_ISSET_GET ($element, $subElement="") {
+function REQUEST_ISSET_GET ($element, $subElement = '') {
        if (empty($subElement)) {
                return ((isset($_GET[$element])) && (!empty($_GET[$element])));
        } else {