X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=network-vcheck.php;h=ce7a708a55a4d677f9b7614a6a0d326ecd9363fc;hp=3bb6ff5734343251b2d2361cff391e97a7204aed;hb=f9fb6c70ac832c0fce74dc922079498d9e0fe8e8;hpb=89a0d1fa9b12aca7eaec782aa932bd397f8a70c8 diff --git a/network-vcheck.php b/network-vcheck.php index 3bb6ff5734..ce7a708a55 100644 --- a/network-vcheck.php +++ b/network-vcheck.php @@ -10,13 +10,8 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : VCheck Script fuer Erweiterung ext-network * * -------------------------------------------------------------------- * - * $Revision:: $ * - * $Date:: $ * - * $Tag:: 0.2.1-FINAL $ * - * $Author:: $ * - * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009 - 2012 by Mailer Developer Team * + * Copyright (c) 2009 - 2013 by Mailer Developer Team * * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -39,7 +34,7 @@ require('inc/libs/security_functions.php'); // Init start time -$GLOBALS['__start_time'] = microtime(true); +$GLOBALS['__start_time'] = microtime(TRUE); // Set module and output mode (raw) $GLOBALS['__module'] = 'network-vcheck'; @@ -55,16 +50,16 @@ setHttpStatus('500 Internal Server Error'); setContentType('text/plain'); // Load header -loadIncludeOnce('inc/header.php'); +loadPageHeader(); // Is the required extension installed? -if (isExtensionInstalled('network')) { +if ((isExtensionInstalled('network')) && (countRequestGet() > 0)) { // It is installed, so handle the request handleNetworkPaymentCheckRequest(); } // END - if // Load footer -loadIncludeOnce('inc/footer.php'); +loadPageFooter(); // [EOF] ?>