X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-config_newsletter.php;h=ed72a5e6676a6b904b8a3f7b82a66045603b37ca;hb=1355d2c0b29510dbd407f9cde9f41a5ac02d01fa;hp=93750a853c7e53b8cab5142e5f62fa0fc0608742;hpb=fb7120ffa230b62b54895bcf95952e1cf30f8594;p=mailer.git diff --git a/inc/modules/admin/what-config_newsletter.php b/inc/modules/admin/what-config_newsletter.php index 93750a853c..ed72a5e667 100644 --- a/inc/modules/admin/what-config_newsletter.php +++ b/inc/modules/admin/what-config_newsletter.php @@ -38,21 +38,21 @@ // Some security stuff... if ((!defined('__SECURITY')) || (!IS_ADMIN())) { - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; + $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php'; require($INC); } // Add description as navigation point -ADD_DESCR("admin", __FILE__); +ADD_DESCR('admin', __FILE__); -if (IS_FORM_SENT()) { +if (isFormSent()) { // Save data - REQUEST_SET_POST('nl_charge', REVERT_COMMA(REQUEST_POST('nl_charge'))); + REQUEST_SET_POST('nl_charge', convertCommaToDot(REQUEST_POST('nl_charge'))); ADMIN_SAVE_SETTINGS_POST(); } else { // Prepare contants for the template - define('__CHARGE_VALUE' , TRANSLATE_COMMA(getConfig('nl_charge'), false)); + define('__CHARGE_VALUE' , translateComma(getConfig('nl_charge'), false)); // Prepare constants and load template LOAD_TEMPLATE("admin_config_newsletter", false);