From: Roland Häder Date: Tue, 3 Nov 2009 16:09:47 +0000 (+0000) Subject: Fixes X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=commitdiff_plain;h=e39158031ac9c956396f35ff71d5923210c1d29a Fixes --- diff --git a/inc/modules/admin/what-config_doubler.php b/inc/modules/admin/what-config_doubler.php index 45029a4684..69a6a46dc7 100644 --- a/inc/modules/admin/what-config_doubler.php +++ b/inc/modules/admin/what-config_doubler.php @@ -46,8 +46,8 @@ addMenuDescription('admin', __FILE__); if (isFormSent()) { // Replace commata with decimal dot - setRequestPostElement('doubler_charge', convertCommaToDot((postRequestElement('doubler_charge') / 100))); - setRequestPostElement('doubler_ref' , convertCommaToDot((postRequestElement('doubler_ref') / 100))); + setRequestPostElement('doubler_charge', convertCommaToDot(postRequestElement('doubler_charge')) / 100); + setRequestPostElement('doubler_ref' , convertCommaToDot(postRequestElement('doubler_ref')) / 100); setRequestPostElement('doubler_min' , convertCommaToDot(postRequestElement('doubler_min'))); setRequestPostElement('doubler_max' , convertCommaToDot(postRequestElement('doubler_max'))); setRequestPostElement('doubler_left' , convertCommaToDot(postRequestElement('doubler_left')));