]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-config_extensions.php
A lot bugfixes for ext-cache and deprecated files removed:
[mailer.git] / inc / modules / admin / what-config_extensions.php
index 0c4e6520469c8d434e2f62209a5364a3785eda08..cc3ba11687bd131ea69b0e4ea198ba1421443fef 100644 (file)
@@ -10,7 +10,7 @@
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Konfiguration des Erweiterungs-Management        *
  * -------------------------------------------------------------------- *
- * $Revision:: 856                                                    $ *
+ * $Revision::                                                        $ *
  * $Date::                                                            $ *
  * $Tag:: 0.2.1-FINAL                                                 $ *
  * $Author::                                                          $ *
 
 // Some security stuff...
 if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
+       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php';
        require($INC);
 }
 
 // Add description as navigation point
-ADD_DESCR("admin", __FILE__);
+ADD_DESCR('admin', __FILE__);
 
-if (IS_FORM_SENT()) {
+if (isFormSent()) {
        // Save configuration
        ADMIN_SAVE_SETTINGS_POST();
 } else {
        // Prepare data
        switch (getConfig('verbose_sql')) {
-               case "Y":
-                       define('__VERBOSE_Y', " checked=\"checked\"");
-                       define('__VERBOSE_N', "");
+               case 'Y':
+                       define('__VERBOSE_Y', ' checked="checked"');
+                       define('__VERBOSE_N', '');
                        break;
 
-               case "N":
-                       define('__VERBOSE_Y', "");
-                       define('__VERBOSE_N', " checked=\"checked\"");
+               case 'N':
+                       define('__VERBOSE_Y', '');
+                       define('__VERBOSE_N', ' checked="checked"');
                        break;
        }