X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-config_extensions.php;h=4b3ee8db6cfce5735f0e12850c38db34da966df3;hp=2f771ec7105baddcb404a3c47a9aa1cc0ebd6659;hb=c3b4eaf29946349ff058691db2dcb615a5379bb2;hpb=09f5758c42a33a56bdd461c946ffe759a59c54aa diff --git a/inc/modules/admin/what-config_extensions.php b/inc/modules/admin/what-config_extensions.php index 2f771ec710..4b3ee8db6c 100644 --- a/inc/modules/admin/what-config_extensions.php +++ b/inc/modules/admin/what-config_extensions.php @@ -14,11 +14,9 @@ * $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 * + * Copyright (c) 2009 - 2011 by Mailer Developer Team * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -40,31 +38,30 @@ // Some security stuff... if ((!defined('__SECURITY')) || (!isAdmin())) { die(); -} +} // 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; + // Prepare content + $content['verbose_y'] = ''; + $content['verbose_n'] = ''; - case 'N': - $content['verbose_y'] = ''; - $content['verbose_n'] = ' checked="checked"'; - break; - } // END - switch + // Prepare data + if (isVerboseSqlEnabled()) { + // Is enabled + $content['verbose_y'] = ' checked="checked"'; + } else { + // Is disabled + $content['verbose_n'] = ' checked="checked"'; + } // Load template loadTemplate('admin_config_extensions', false, $content); - } // [EOF]