X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-config_beg.php;h=8fc4128de9422f1ee8cccec0b11f619a3d8e8b44;hp=91e66e9d303ad03a3519f24df99a34bab560c7ad;hb=57227d33e870ec5cd271209c4a978a52b45c2dd6;hpb=4da570680cb8c5ed1e550746e48a16965b7175c4 diff --git a/inc/modules/admin/what-config_beg.php b/inc/modules/admin/what-config_beg.php index 91e66e9d30..8fc4128de9 100644 --- a/inc/modules/admin/what-config_beg.php +++ b/inc/modules/admin/what-config_beg.php @@ -46,17 +46,17 @@ addMenuDescription('admin', __FILE__); if (isFormSent()) { // Translate german decimal commas to computer decimal dots - setPostRequestElement('beg_points' , convertCommaToDot(postRequestElement('beg_points') )); - setPostRequestElement('beg_points_max' , convertCommaToDot(postRequestElement('beg_points_max') )); - setPostRequestElement('beg_notify_bonus', convertCommaToDot(postRequestElement('beg_notify_bonus'))); + setPostRequestParameter('beg_points' , convertCommaToDot(postRequestParameter('beg_points') )); + setPostRequestParameter('beg_points_max' , convertCommaToDot(postRequestParameter('beg_points_max') )); + setPostRequestParameter('beg_notify_bonus', convertCommaToDot(postRequestParameter('beg_notify_bonus'))); // Save settings adminSaveSettingsFromPostData(); // Remember new settings - setConfigEntry('beg_rallye' , postRequestElement('beg_rallye')); - setConfigEntry('beg_ral_en_notify', postRequestElement('beg_ral_en_notify')); - setConfigEntry('beg_ral_di_notify', postRequestElement('beg_ral_di_notify')); + setConfigEntry('beg_rallye' , postRequestParameter('beg_rallye')); + setConfigEntry('beg_ral_en_notify', postRequestParameter('beg_ral_en_notify')); + setConfigEntry('beg_ral_di_notify', postRequestParameter('beg_ral_di_notify')); } else { // Prepare constants for the template $content['points'] = translateComma(getConfig('beg_points') , false);