X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=ajax.php;h=e5808595ddb09a9bfc3fc8ca36f96429b5b1a942;hp=518c2c2512c0a40e2cc068f143f07ba92b5ba50b;hb=261f8bb5b097dfafb28d151867fff3ded1974bbe;hpb=cd7d344ea7007cfa20413acd3e03e50f0ab86d86 diff --git a/ajax.php b/ajax.php index 518c2c2512..e5808595dd 100644 --- a/ajax.php +++ b/ajax.php @@ -10,11 +10,6 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : AJAX-Abfragescript * * -------------------------------------------------------------------- * - * $Revision:: $ * - * $Date:: $ * - * $Tag:: 0.2.1-FINAL $ * - * $Author:: $ * - * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * * Copyright (c) 2009 - 2013 by Mailer Developer Team * * For more information visit: http://mxchange.org * @@ -63,12 +58,12 @@ loadIncludeOnce('inc/ajax-functions.php'); initAjax(); // Load header here -loadIncludeOnce('inc/header.php'); +loadPageHeader(); // Process only POST requests and that at least 'level' is set if ((getHttpRequestMethod() == 'POST') && (isPostRequestElementSet('level'))) { // Okay, that is valid, now check that the requested level right is valid - if (isAjaxRequestLevelValid()) { + if (isValidAjaxRequestLevel()) { // Process the request processAjaxRequest(); @@ -84,7 +79,7 @@ if ((getHttpRequestMethod() == 'POST') && (isPostRequestElementSet('level'))) { } // END - if // Footer -loadIncludeOnce('inc/footer.php'); +loadPageFooter(); // [EOF] ?>