X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-config_extensions.php;h=18f8278ff134b439b696b5f8b9a0d1e30febdcdb;hb=ae798f7e416793adf24a3b87024df1027e520ce2;hp=4c09b2b39321e228779adacbd77f868c17364ade;hpb=efee806bdf3f96472cfc10247943446169f752d1;p=mailer.git diff --git a/inc/modules/admin/what-config_extensions.php b/inc/modules/admin/what-config_extensions.php index 4c09b2b393..18f8278ff1 100644 --- a/inc/modules/admin/what-config_extensions.php +++ b/inc/modules/admin/what-config_extensions.php @@ -10,7 +10,12 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Konfiguration des Erweiterungs-Management * * -------------------------------------------------------------------- * - * * + * $Revision:: $ * + * $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 - 2008 by Roland Haeder * * For more information visit: http://www.mxchange.org * @@ -38,20 +43,20 @@ if ((!defined('__SECURITY')) || (!IS_ADMIN())) { } // Add description as navigation point -ADD_DESCR("admin", basename(__FILE__)); +ADD_DESCR("admin", __FILE__); -if (isset($_POST['ok'])) { +if (IS_FORM_SENT()) { // Save configuration - ADMIN_SAVE_SETTINGS($_POST); + 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;