]> git.mxchange.org Git - mailer.git/commitdiff
Check if at least one parameter (mostly still to less) is given
authorRoland Häder <roland@mxchange.org>
Sat, 29 Dec 2012 00:26:29 +0000 (00:26 +0000)
committerRoland Häder <roland@mxchange.org>
Sat, 29 Dec 2012 00:26:29 +0000 (00:26 +0000)
network-vcheck.php

index ad95e67711de7b093bd48d394d62bf61193a380c..f615c1778a3b99d532c3bfdc04d44a58d424d204 100644 (file)
@@ -58,7 +58,7 @@ setContentType('text/plain');
 loadIncludeOnce('inc/header.php');
 
 // Is the required extension installed?
-if (isExtensionInstalled('network')) {
+if ((isExtensionInstalled('network')) && (countRequestGet() > 0)) {
        // It is installed, so handle the request
        handleNetworkPaymentCheckRequest();
 } // END - if