]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-config_user.php
Rewritten all THEME_FOO variables to GLOBALS
[mailer.git] / inc / modules / admin / what-config_user.php
index c097c77ddaa388c0b3684475c9d0ec85556254ba..8b8a63120f6a5cf64d45712dcb533c836dd656fd 100644 (file)
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Mitgliederliste konvfigurieren                   *
  * -------------------------------------------------------------------- *
- *                                                                      *
+ * $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                  *
@@ -39,16 +44,13 @@ if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
 // Add description as navigation point
 ADD_DESCR("admin", __FILE__);
 
-if (isset($_POST['ok']))
-{
+if (IS_FORM_SENT()) {
        // Save settings
-       ADMIN_SAVE_SETTINGS($_POST);
-}
- else
-{
+       ADMIN_SAVE_SETTINGS_POST();
+} else {
        // Prepare constants for the template
-       define('__LIMIT_VALUE', $_CONFIG['user_limit']);
-       define('__ALPHA_VALUE', $_CONFIG['user_alpha']);
+       define('__LIMIT_VALUE', getConfig('user_limit'));
+       define('__ALPHA_VALUE', getConfig('user_alpha'));
 
        // Load form template
        LOAD_TEMPLATE("admin_config_user");