Several fixes and and improvements:
[mailer.git] / inc / modules / admin / what-config_wernis.php
index 6c4680a55d47ac9e250fc9c869c070e17c7d01f0..887d56bc17421fcc9616c2f11331a2d466b8bb62 100644 (file)
@@ -44,13 +44,17 @@ if (isset($_POST['ok'])) {
        // First merge temporarily the new API data into the current config
        $_CONFIG = array_merge($_CONFIG, $_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 {