X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=inline;f=inc%2Fmodules%2Fadmin%2Fwhat-config_order.php;h=f7571f5bf7dec86077d6479ae2681d67698526d6;hb=a6aaa866eff075c408f58cc0bc24f08562d51b7c;hp=43f7f8fb3b23c9e77879ee3968e986d34a28f910;hpb=58be7e39090a997a47966f1057d8bf74ee6f3fad;p=mailer.git diff --git a/inc/modules/admin/what-config_order.php b/inc/modules/admin/what-config_order.php index 43f7f8fb3b..f7571f5bf7 100644 --- a/inc/modules/admin/what-config_order.php +++ b/inc/modules/admin/what-config_order.php @@ -16,8 +16,8 @@ * $Author:: $ * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009 - 2011 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 * @@ -37,13 +37,13 @@ // Some security stuff... if ((!defined('__SECURITY')) || (!isAdmin())) { - die(); + exit(); } // END - if // Add description as navigation point addYouAreHereLink('admin', __FILE__); -if (isFormSent()) { +if (isFormSent('save_config')) { // Save data adminSaveSettingsFromPostData(); } else { @@ -62,11 +62,8 @@ if (isFormSent()) { $content[$entry . '_' . strtolower(getConfig($entry))] = ' selected="selected"'; } // END - foreach - // Selection list - $content['order_selection'] = addOrderSelectionOptions(getConfig('order_select')); - // Load template - loadTemplate('admin_config_order', false, $content); + loadTemplate('admin_config_order', FALSE, $content); } // [EOF]