inc/.htaccess svneol=native#text/plain
inc/ajax-functions.php svneol=native#text/plain
inc/ajax/.htaccess svneol=native#text/plain
+inc/ajax/ajax_ svneol=native#text/plain
inc/ajax/ajax_admin.php svneol=native#text/plain
inc/ajax/ajax_installer.php svneol=native#text/plain
inc/autopurge.php -text
--- /dev/null
+<?php
+/************************************************************************
+ * Mailer v0.2.1-FINAL Start: 06/24/2012 *
+ * =================== Last change: 06/24/2012 *
+ * *
+ * -------------------------------------------------------------------- *
+ * File : ajax_admin.php *
+ * -------------------------------------------------------------------- *
+ * Short description : AJAX library for admin menu *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung : AJAX-Bibliothek fuer Adminmenu *
+ * -------------------------------------------------------------------- *
+ * $Revision:: $ *
+ * $Date:: $ *
+ * $Tag:: 0.2.1-FINAL $ *
+ * $Author:: $ *
+ * -------------------------------------------------------------------- *
+ * Copyright (c) 2003 - 2009 by Roland Haeder *
+ * Copyright (c) 2009 - 2012 by Mailer Developer Team *
+ * For more information visit: http://mxchange.org *
+ * *
+ * This program is free software; you can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License, or *
+ * (at your option) any later version. *
+ * *
+ * This program is distributed in the hope that it will be useful, *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
+ * GNU General Public License for more details. *
+ * *
+ * You should have received a copy of the GNU General Public License *
+ * along with this program; if not, write to the Free Software *
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, *
+ * MA 02110-1301 USA *
+ ************************************************************************/
+
+// Some security stuff...
+if ((!defined('__SECURITY')) || (!isAjaxOutputMode())) {
+ die();
+} // END - if
+
+// [EOF]
+?>
}
// Setter for 'output_mode' value
-function setOutputMode ($newOutputMode) {
+function setScriptOutputMode ($newOutputMode) {
//* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'output_mode=' . $newOutputMode);
$GLOBALS['__output_mode'] = (int) $newOutputMode;
}
$GLOBALS['__output'] = '';
// To make redirects working (no content type), output mode must be raw
- setOutputMode(-1);
+ setScriptOutputMode(-1);
// Send helping header
setHttpStatus('302 Found');