X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-config_admin.php;h=92f1b16690b74e2264689bf2c1cd2a09957504fb;hb=d6bbcf951f45052d6888da6ec83a02eb215058df;hp=22a6e8f2dcc6e63509c568e7d8d6c451443d0731;hpb=e2148142f8b1a8f40fd6e7ca32185569c5a9083e;p=mailer.git diff --git a/inc/modules/admin/what-config_admin.php b/inc/modules/admin/what-config_admin.php index 22a6e8f2dc..92f1b16690 100644 --- a/inc/modules/admin/what-config_admin.php +++ b/inc/modules/admin/what-config_admin.php @@ -14,11 +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 * - * 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 * @@ -42,19 +41,19 @@ if ((!defined('__SECURITY')) || (!isAdmin())) { } // END - if // Add description as navigation point -addMenuDescription('admin', __FILE__); +addYouAreHereLink('admin', __FILE__); -if (isFormSent()) { +if (isFormSent('save_config')) { // Save configuration adminSaveSettingsFromPostData(); } else { // Prepare data for the template $content['admin_menu_new'] = ''; $content['admin_menu_old'] = ''; - $content['admin_menu_' . strtolower(getConfig('admin_menu'))] = ' checked="checked"'; + $content['admin_menu_' . strtolower(getAdminMenu())] = ' checked="checked"'; // Display form - loadTemplate('admin_config_admin', false, $content); + loadTemplate('admin_config_admin', FALSE, $content); } // [EOF]