]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-config_wernis.php
CSS classes rewritten to ids to let JavaScript insert more values. Some wrappers...
[mailer.git] / inc / modules / admin / what-config_wernis.php
index f174499163d70f0290ccabca5cb6f3a5a91261bc..d112c9565b1a31c6fca263fd2327cd119e92d1ca 100644 (file)
@@ -45,7 +45,7 @@ if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
 // Add description as navigation point
 ADD_DESCR('admin', __FILE__);
 
-if (IS_FORM_SENT()) {
+if (isFormSent()) {
        // First merge temporarily the new API data into the current config
        mergeConfig(REQUEST_POST_ARRAY());
 
@@ -53,7 +53,7 @@ if (IS_FORM_SENT()) {
        if (WERNIS_TEST_API()) {
                // Revert german commata
                foreach (array('payout_factor', 'withdraw_factor', 'payout_fee_percent', 'withdraw_fee_percent') as $revert) {
-                       REQUEST_SET_POST('wernis_'.$revert, REVERT_COMMA(REQUEST_POST('wernis_'.$revert)));
+                       REQUEST_SET_POST('wernis_'.$revert, convertCommaToDot(REQUEST_POST('wernis_'.$revert)));
                } // END - if
 
                // Hash the password and remove clear-text
@@ -75,10 +75,10 @@ if (IS_FORM_SENT()) {
                'api_md5'              => getConfig('wernis_api_md5'),
                'api_url'              => getConfig('wernis_api_url'),
                '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_factor'        => translateComma(getConfig('wernis_payout_factor')),
+               'withdraw_factor'      => translateComma(getConfig('wernis_withdraw_factor')),
+               'payout_fee_percent'   => translateComma(getConfig('wernis_payout_fee_percent')),
+               'withdraw_fee_percent' => translateComma(getConfig('wernis_withdraw_fee_percent')),
                'payout_fee_fix'       => getConfig(('wernis_payout_fee_fix')),
                'withdraw_fee_fix'     => getConfig(('wernis_withdraw_fee_fix'))
        );
@@ -86,23 +86,23 @@ if (IS_FORM_SENT()) {
        // Prepare payout Y/N selection
        if (getConfig('wernis_payout_active') == 'Y') {
                // Payout allowed
-               define('__CFG_WERNIS_PAYOUT_ACTIVE_Y', ' chkecked="checked"');
+               define('__CFG_WERNIS_PAYOUT_ACTIVE_Y', ' checked="checked"');
                define('__CFG_WERNIS_PAYOUT_ACTIVE_N', '');
        } else {
                // Payout disabled
                define('__CFG_WERNIS_PAYOUT_ACTIVE_Y', '');
-               define('__CFG_WERNIS_PAYOUT_ACTIVE_N', ' chkecked="checked"');
+               define('__CFG_WERNIS_PAYOUT_ACTIVE_N', ' checked="checked"');
        }
 
        // Prepare withdraw Y/N selection
        if (getConfig('wernis_withdraw_active') == 'Y') {
                // Payout allowed
-               define('__CFG_WERNIS_WITHDRAW_ACTIVE_Y', ' chkecked="checked"');
+               define('__CFG_WERNIS_WITHDRAW_ACTIVE_Y', ' checked="checked"');
                define('__CFG_WERNIS_WITHDRAW_ACTIVE_N', '');
        } else {
                // Payout disabled
                define('__CFG_WERNIS_WITHDRAW_ACTIVE_Y', '');
-               define('__CFG_WERNIS_WITHDRAW_ACTIVE_N', ' chkecked="checked"');
+               define('__CFG_WERNIS_WITHDRAW_ACTIVE_N', ' checked="checked"');
        }
 
        // Load template