X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-config_wernis.php;h=f174499163d70f0290ccabca5cb6f3a5a91261bc;hp=1c57333bcbdfc94011a7f43bd622bd33a9133d0e;hb=f97a999e0737c0007ae9c3c26dfef49f75a175ac;hpb=508228c85fba8448d00865b1639cb8cd7a69e457 diff --git a/inc/modules/admin/what-config_wernis.php b/inc/modules/admin/what-config_wernis.php index 1c57333bcb..f174499163 100644 --- a/inc/modules/admin/what-config_wernis.php +++ b/inc/modules/admin/what-config_wernis.php @@ -10,7 +10,7 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Auszahlungensarten editieren * * -------------------------------------------------------------------- * - * $Revision:: 856 $ * + * $Revision:: $ * * $Date:: $ * * $Tag:: 0.2.1-FINAL $ * * $Author:: $ * @@ -38,12 +38,12 @@ // Some security stuff... if ((!defined('__SECURITY')) || (!IS_ADMIN())) { - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; + $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php'; require($INC); } // Add description as navigation point -ADD_DESCR("admin", __FILE__); +ADD_DESCR('admin', __FILE__); if (IS_FORM_SENT()) { // First merge temporarily the new API data into the current config @@ -64,7 +64,7 @@ if (IS_FORM_SENT()) { ADMIN_SAVE_SETTINGS_POST(); } else { // Failed to test the API! - LOAD_TEMPLATE("admin_settings_saved", false, GET_WERNIS_ERROR_MESSAGE()); + LOAD_TEMPLATE('admin_settings_saved', false, GET_WERNIS_ERROR_MESSAGE()); } } else { // Prepare data for template output @@ -84,25 +84,25 @@ if (IS_FORM_SENT()) { ); // Prepare payout Y/N selection - if (getConfig('wernis_payout_active') == "Y") { + if (getConfig('wernis_payout_active') == 'Y') { // Payout allowed - define('__CFG_WERNIS_PAYOUT_ACTIVE_Y', " checked=\"checked\""); - define('__CFG_WERNIS_PAYOUT_ACTIVE_N', ""); + define('__CFG_WERNIS_PAYOUT_ACTIVE_Y', ' chkecked="checked"'); + define('__CFG_WERNIS_PAYOUT_ACTIVE_N', ''); } else { // Payout disabled - define('__CFG_WERNIS_PAYOUT_ACTIVE_Y', ""); - define('__CFG_WERNIS_PAYOUT_ACTIVE_N', " checked=\"checked\""); + define('__CFG_WERNIS_PAYOUT_ACTIVE_Y', ''); + define('__CFG_WERNIS_PAYOUT_ACTIVE_N', ' chkecked="checked"'); } // Prepare withdraw Y/N selection - if (getConfig('wernis_withdraw_active') == "Y") { + if (getConfig('wernis_withdraw_active') == 'Y') { // Payout allowed - define('__CFG_WERNIS_WITHDRAW_ACTIVE_Y', " checked=\"checked\""); - define('__CFG_WERNIS_WITHDRAW_ACTIVE_N', ""); + define('__CFG_WERNIS_WITHDRAW_ACTIVE_Y', ' chkecked="checked"'); + define('__CFG_WERNIS_WITHDRAW_ACTIVE_N', ''); } else { // Payout disabled - define('__CFG_WERNIS_WITHDRAW_ACTIVE_Y', ""); - define('__CFG_WERNIS_WITHDRAW_ACTIVE_N', " checked=\"checked\""); + define('__CFG_WERNIS_WITHDRAW_ACTIVE_Y', ''); + define('__CFG_WERNIS_WITHDRAW_ACTIVE_N', ' chkecked="checked"'); } // Load template