]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-config_newsletter.php
Some fixes for surfbar extension (#123), double->single, misc cleanups/fixes
[mailer.git] / inc / modules / admin / what-config_newsletter.php
index 93750a853c7e53b8cab5142e5f62fa0fc0608742..ed72a5e6676a6b904b8a3f7b82a66045603b37ca 100644 (file)
 
 // 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);