]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-config_extensions.php
Some more wrappers added, code cleanups:
[mailer.git] / inc / modules / admin / what-config_extensions.php
index 2fad1bdca26feb8951d79dda661d8776b4d59a83..17c2b656d2fc9e8bab6784a57b0f39bcec5fdbb0 100644 (file)
@@ -18,6 +18,7 @@
  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
+ * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
  * For more information visit: http://www.mxchange.org                  *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
@@ -39,7 +40,7 @@
 // Some security stuff...
 if ((!defined('__SECURITY')) || (!isAdmin())) {
        die();
-}
+} // END - if
 
 // Add description as navigation point
 addMenuDescription('admin', __FILE__);
@@ -48,22 +49,21 @@ if (isFormSent()) {
        // Save configuration
        adminSaveSettingsFromPostData();
 } else {
-       // Prepare data
-       switch (getConfig('verbose_sql')) {
-               case 'Y':
-                       $content['verbose_y'] = ' checked="checked"';
-                       $content['verbose_n'] = '';
-                       break;
+       // Prepare content
+       $content['verbose_y'] = '';
+       $content['verbose_n'] = '';
 
-               case 'N':
-                       $content['verbose_y'] = '';
-                       $content['verbose_n'] = ' checked="checked"';
-                       break;
-       } // END - switch
+       // 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);
-
 }
 
 // [EOF]