]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-config_extensions.php
Rewrote 'we' word a little, rewrote mail order to use SQL_INSERTID() instead of anoth...
[mailer.git] / inc / modules / admin / what-config_extensions.php
index 64289da134bbf22e9ad20a2a363cf4f2f301ac03..bbcbf612309327fd928374aa5efb817c95a5d0d4 100644 (file)
@@ -16,8 +16,8 @@
  * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
- * For more information visit: http://www.mxchange.org                  *
+ * 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 *
@@ -41,27 +41,14 @@ if ((!defined('__SECURITY')) || (!isAdmin())) {
 } // END - if
 
 // Add description as navigation point
-addMenuDescription('admin', __FILE__);
+addYouAreHereLink('admin', __FILE__);
 
 if (isFormSent()) {
        // Save configuration
        adminSaveSettingsFromPostData();
 } else {
-       // Prepare content
-       $content['verbose_y'] = '';
-       $content['verbose_n'] = '';
-
-       // Prepare data
-       if (isVerboseSqlEnabled()) {
-               // Is enabled
-               $content['verbose_y'] = ' checked="checked"';
-       } else {
-               // Is disabled
-               $content['verbose_n'] = ' checked="checked"';
-       }
-
        // Load template
-       loadTemplate('admin_config_extensions', false, $content);
+       loadTemplate('admin_config_extensions');
 }
 
 // [EOF]