]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-admins_add.php
A lot double-quotes rewritten to single-quotes, some redirect URLs fixed
[mailer.git] / inc / modules / admin / what-admins_add.php
index 73da6bd7e6bcc3dc38d33a249e29d3e4fb1a11d2..4339a81c380da94cc03b5b21c62e6965b010ea21 100644 (file)
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Neues Administrator-Account anlegen              *
  * -------------------------------------------------------------------- *
- *                                                                      *
+ * $Revision::                                                        $ *
+ * $Date::                                                            $ *
+ * $Tag:: 0.2.1-FINAL                                                 $ *
+ * $Author::                                                          $ *
+ * Needs to be in all Files and every File needs "svn propset           *
+ * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
  * For more information visit: http://www.mxchange.org                  *
 
 // Some security stuff...
 if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
+       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php';
        require($INC);
 }
 
 // Add description as navigation point
-ADD_DESCR("admin", __FILE__);
+ADD_DESCR('admin', __FILE__);
 
 // Display form is default
 $FORM = true;
@@ -50,7 +55,7 @@ if ((REQUEST_ISSET_POST(('add'))) && (REQUEST_ISSET_POST(('login'))) && (REQUEST
                $FORM = false;
 
                // Admin login saved
-               LOAD_TEMPLATE("admin_settings_saved", false, getMessage('ADMIN_ADMINS_ADD_DONE'));
+               LOAD_TEMPLATE('admin_settings_saved', false, getMessage('ADMIN_ADMINS_ADD_DONE'));
 
                // Run filter chain
                runFilterChain('post_admin_added', REQUEST_POST_ARRAY());
@@ -61,8 +66,8 @@ if ((REQUEST_ISSET_POST(('add'))) && (REQUEST_ISSET_POST(('login'))) && (REQUEST
 if ($FORM === true) {
        // Set missing elements
        // @TODO Do we still need this ugly code here?
-       if (!REQUEST_ISSET_POST(('login'))) REQUEST_SET_POST('login', "");
-       if (!REQUEST_ISSET_POST(('email'))) REQUEST_SET_POST('email', "");
+       if (!REQUEST_ISSET_POST(('login'))) REQUEST_SET_POST('login', '');
+       if (!REQUEST_ISSET_POST(('email'))) REQUEST_SET_POST('email', '');
 
        // Load form from template
        LOAD_TEMPLATE("admin_admins_add");