]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-config_extensions.php
Fix in CREATE_EXTENSION_DEACTIVATION_TASK() and coding-style updated
[mailer.git] / inc / modules / admin / what-config_extensions.php
index 4c09b2b39321e228779adacbd77f868c17364ade..4bd20e5a6968cf08385caae5dbf09d5a471b13d7 100644 (file)
@@ -38,20 +38,20 @@ if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
 }
 
 // Add description as navigation point
-ADD_DESCR("admin", basename(__FILE__));
+ADD_DESCR("admin", __FILE__);
 
 if (isset($_POST['ok'])) {
        // Save configuration
        ADMIN_SAVE_SETTINGS($_POST);
 } else {
        // Prepare data
-       switch ($_CONFIG['verbose_sql']) {
-               case 'Y':
+       switch (getConfig('verbose_sql')) {
+               case "Y":
                        define('__VERBOSE_Y', " checked=\"checked\"");
                        define('__VERBOSE_N', "");
                        break;
 
-               case 'N':
+               case "N":
                        define('__VERBOSE_Y', "");
                        define('__VERBOSE_N', " checked=\"checked\"");
                        break;