X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fwrapper-functions.php;h=c9f97c7b212f8f057c1dc78425d2b18761572cb5;hp=cf854bf284f43b5a516a4b9ef1d0bac6179d2435;hb=57227d33e870ec5cd271209c4a978a52b45c2dd6;hpb=88bdd7176f5b4b36aa201a2a17e8d46370b27261 diff --git a/inc/wrapper-functions.php b/inc/wrapper-functions.php index cf854bf284..c9f97c7b21 100644 --- a/inc/wrapper-functions.php +++ b/inc/wrapper-functions.php @@ -267,7 +267,7 @@ function isInstalling () { // Determine wether we are installing if (!isset($GLOBALS['mxchange_installing'])) { // Check URL (css.php/js.php need this) - $GLOBALS['mxchange_installing'] = isGetRequestElementSet('installing'); + $GLOBALS['mxchange_installing'] = isGetRequestParameterSet('installing'); } // END - if // Return result @@ -437,9 +437,9 @@ function removeFile ($FQFN) { // Wrapper for $_POST['sel'] function countPostSelection ($element = 'sel') { // Is it set? - if (isPostRequestElementSet($element)) { + if (isPostRequestParameterSet($element)) { // Return counted elements - return countSelection(postRequestElement($element)); + return countSelection(postRequestParameter($element)); } else { // Return zero if not found return 0;