X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=inc%2Fmodules%2Fadmin%2Fwhat-config_extensions.php;h=bbcbf612309327fd928374aa5efb817c95a5d0d4;hb=8fad776382e63b3f73f8dbe289f229d79cfc2c22;hp=fd4d74d79aab634185bdf08a655513b5c252b6c0;hpb=b64f960124452301abd69ae3bd7ac4daee420550;p=mailer.git diff --git a/inc/modules/admin/what-config_extensions.php b/inc/modules/admin/what-config_extensions.php index fd4d74d79a..bbcbf61230 100644 --- a/inc/modules/admin/what-config_extensions.php +++ b/inc/modules/admin/what-config_extensions.php @@ -14,12 +14,10 @@ * $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 - 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 * @@ -43,28 +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 data - switch (getConfig('verbose_sql')) { - case 'Y': - $content['verbose_y'] = ' checked="checked"'; - $content['verbose_n'] = ''; - break; - - case 'N': - $content['verbose_y'] = ''; - $content['verbose_n'] = ' checked="checked"'; - break; - } // END - switch - // Load template - loadTemplate('admin_config_extensions', false, $content); - + loadTemplate('admin_config_extensions'); } // [EOF]