X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=inc%2Fmodules%2Fadmin%2Fwhat-config_wernis.php;h=b92afc06d5054dda393d86f91b27aa1340f324ce;hb=7989ec603971c0dc8dc35d8be4e72f8098b83baa;hp=313868b86a6263d30a46957c3a690de5386bd230;hpb=963e55ca1ea79e255f235e359cde9f7862191dc5;p=mailer.git diff --git a/inc/modules/admin/what-config_wernis.php b/inc/modules/admin/what-config_wernis.php index 313868b86a..b92afc06d5 100644 --- a/inc/modules/admin/what-config_wernis.php +++ b/inc/modules/admin/what-config_wernis.php @@ -38,19 +38,23 @@ if ((!defined('__SECURITY')) || (!IS_ADMIN())) { } // Add description as navigation point -ADD_DESCR("admin", basename(__FILE__)); +ADD_DESCR("admin", __FILE__); if (isset($_POST['ok'])) { // First merge temporarily the new API data into the current config - $_CONFIG = array_merge($_CONFIG, $_POST); + mergeConfig($_POST); - // Let's test the API first (hold your horses here, cowboy! Thanks. :) ) + // Let's test the API first (hold your horses here, cowboy! Thank you. :) ) if (WERNIS_TEST_API()) { // Revert german commata foreach (array('payout_factor', 'withdraw_factor', 'payout_fee_percent', 'withdraw_fee_percent') as $revert) { $_POST['wernis_'.$revert] = REVERT_COMMA($_POST['wernis_'.$revert]); } // END - if + // Hash the password and remove clear-text + $_POST['wernis_pass_md5'] = md5($_POST['wernis_pass']); + unset($_POST['wernis_pass']); + // Save settings ADMIN_SAVE_SETTINGS($_POST); } else { @@ -60,22 +64,22 @@ if (isset($_POST['ok'])) { } else { // Prepare data for template output $content = array( - 'min_payout' => bigintval($_CONFIG['wernis_min_payout']), - 'min_withdraw' => bigintval($_CONFIG['wernis_min_withdraw']), - 'api_id' => bigintval($_CONFIG['wernis_api_id']), - 'api_md5' => $_CONFIG['wernis_api_md5'], - 'api_url' => $_CONFIG['wernis_api_url'], - 'refid' => bigintval($_CONFIG['wernis_refid']), - 'payout_factor' => TRANSLATE_COMMA($_CONFIG['wernis_payout_factor']), - 'withdraw_factor' => TRANSLATE_COMMA($_CONFIG['wernis_withdraw_factor']), - 'payout_fee_percent' => TRANSLATE_COMMA($_CONFIG['wernis_payout_fee_percent']), - 'withdraw_fee_percent' => TRANSLATE_COMMA($_CONFIG['wernis_withdraw_fee_percent']), - 'payout_fee_fix' => bigintval($_CONFIG['wernis_payout_fee_fix']), - 'withdraw_fee_fix' => bigintval($_CONFIG['wernis_withdraw_fee_fix']) + 'min_payout' => bigintval(getConfig('wernis_min_payout')), + 'min_withdraw' => bigintval(getConfig('wernis_min_withdraw')), + 'api_id' => bigintval(getConfig('wernis_api_id')), + 'api_md5' => getConfig('wernis_api_md5'), + 'api_url' => getConfig('wernis_api_url'), + 'refid' => bigintval(getConfig('wernis_refid')), + 'payout_factor' => TRANSLATE_COMMA(getConfig('wernis_payout_factor')), + 'withdraw_factor' => TRANSLATE_COMMA(getConfig('wernis_withdraw_factor')), + 'payout_fee_percent' => TRANSLATE_COMMA(getConfig('wernis_payout_fee_percent')), + 'withdraw_fee_percent' => TRANSLATE_COMMA(getConfig('wernis_withdraw_fee_percent')), + 'payout_fee_fix' => bigintval(getConfig('wernis_payout_fee_fix')), + 'withdraw_fee_fix' => bigintval(getConfig('wernis_withdraw_fee_fix')) ); // Prepare payout Y/N selection - if ($_CONFIG['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', ""); @@ -86,7 +90,7 @@ if (isset($_POST['ok'])) { } // Prepare withdraw Y/N selection - if ($_CONFIG['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', "");