]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-config_email.php
Fixes some HTML errors, shell scripts cleaned up
[mailer.git] / inc / modules / admin / what-config_email.php
index 8ebccd48bfa9894e55912dfc92e54e42603da2d2..edd6953f53035b6b57dee9fd4032a08861f01b51 100644 (file)
  * $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 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
+ * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
  * For more information visit: http://www.mxchange.org                  *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
 // Some security stuff...
 if ((!defined('__SECURITY')) || (!isAdmin())) {
        die();
-}
+} // END - if
 
 // Add description as navigation point
-addMenuDescription('admin', __FILE__);
+addYouAreHereLink('admin', __FILE__);
 
 // Remove empty array index
 if (!isPostRequestParameterSet('max')) unsetPostRequestParameter('add_max');
@@ -86,7 +84,7 @@ if (isPostRequestParameterSet('add_max')) {
                                $TEXT = '{--ADMIN_MAX_RECEIVE_SAVED--}';
                                break;
 
-                       case 'del':
+                       case 'delete':
                                SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_max_receive` WHERE `id`=%s LIMIT 1",
                                        array($id), __FILE__, __LINE__);
                                $TEXT = '{--ADMIN_MAX_RECEIVE_DELETED--}';
@@ -98,7 +96,7 @@ if (isPostRequestParameterSet('add_max')) {
                // Display message
                loadTemplate('admin_settings_saved', false, $TEXT);
        } // END - if
-} elseif ((isFormSent('del')) && (ifPostContainsSelections())) {
+} elseif ((isFormSent('delete')) && (ifPostContainsSelections())) {
        // Delete entries
        $OUT = '';
        foreach (postRequestParameter('sel') as $id => $value) {