X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-config_wernis.php;h=1c57333bcbdfc94011a7f43bd622bd33a9133d0e;hp=3e79f811a4b9d1cbb080b55364e9abbc4a48b4b7;hb=508228c85fba8448d00865b1639cb8cd7a69e457;hpb=f9a9c09e1ae257449bfd98f8854e321efba1dc3c diff --git a/inc/modules/admin/what-config_wernis.php b/inc/modules/admin/what-config_wernis.php index 3e79f811a4..1c57333bcb 100644 --- a/inc/modules/admin/what-config_wernis.php +++ b/inc/modules/admin/what-config_wernis.php @@ -10,7 +10,12 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Auszahlungensarten editieren * * -------------------------------------------------------------------- * - * * + * $Revision:: 856 $ * + * $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 - 2008 by Roland Haeder * * For more information visit: http://www.mxchange.org * @@ -40,23 +45,23 @@ if ((!defined('__SECURITY')) || (!IS_ADMIN())) { // Add description as navigation point ADD_DESCR("admin", __FILE__); -if (isset($_POST['ok'])) { +if (IS_FORM_SENT()) { // First merge temporarily the new API data into the current config - $_CONFIG = merge_array($_CONFIG, $_POST); + mergeConfig(REQUEST_POST_ARRAY()); // 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]); + REQUEST_SET_POST('wernis_'.$revert, REVERT_COMMA(REQUEST_POST('wernis_'.$revert))); } // END - if // Hash the password and remove clear-text - $_POST['wernis_pass_md5'] = md5($_POST['wernis_pass']); - unset($_POST['wernis_pass']); + REQUEST_SET_POST('wernis_pass_md5', md5(REQUEST_POST('wernis_pass'))); + REQUEST_UNSET_POST(('wernis_pass')); // Save settings - ADMIN_SAVE_SETTINGS($_POST); + ADMIN_SAVE_SETTINGS_POST(); } else { // Failed to test the API! LOAD_TEMPLATE("admin_settings_saved", false, GET_WERNIS_ERROR_MESSAGE()); @@ -64,18 +69,18 @@ if (isset($_POST['ok'])) { } else { // Prepare data for template output $content = array( - 'min_payout' => bigintval(getConfig('wernis_min_payout')), - 'min_withdraw' => bigintval(getConfig('wernis_min_withdraw')), - 'api_id' => bigintval(getConfig('wernis_api_id')), + 'min_payout' => getConfig(('wernis_min_payout')), + 'min_withdraw' => getConfig(('wernis_min_withdraw')), + 'api_id' => getConfig(('wernis_api_id')), 'api_md5' => getConfig('wernis_api_md5'), 'api_url' => getConfig('wernis_api_url'), - 'refid' => bigintval(getConfig('wernis_refid')), + 'refid' => 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')) + 'payout_fee_fix' => getConfig(('wernis_payout_fee_fix')), + 'withdraw_fee_fix' => getConfig(('wernis_withdraw_fee_fix')) ); // Prepare payout Y/N selection