X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fguest%2Fwhat-beg.php;h=1ce4e5e2f845e8628ed44522e89d2ba5e06d11ae;hb=3afdce4fe00b4af570122ce7b8158ced44aec7d3;hp=e8849838721e1a0755959e73f7b7ca7cb78fcba1;hpb=2f0357c7ac9da6c17d361b8e7cb0b1ad09eb85f6;p=mailer.git diff --git a/inc/modules/guest/what-beg.php b/inc/modules/guest/what-beg.php index e884983872..1ce4e5e2f8 100644 --- a/inc/modules/guest/what-beg.php +++ b/inc/modules/guest/what-beg.php @@ -49,8 +49,8 @@ if (!defined('__SECURITY')) { ADD_DESCR('guest', __FILE__); // Prepare constants -define('__BEG_POINTS' , TRANSLATE_COMMA(getConfig('beg_points'))); -define('__BEG_POINTS_MAX', TRANSLATE_COMMA(getConfig('beg_points_max'))); +define('__BEG_POINTS' , translateComma(getConfig('beg_points'))); +define('__BEG_POINTS_MAX', translateComma(getConfig('beg_points_max'))); if ($GLOBALS['refid'] > 0) { // Take referal ID from URL/Cookie define('__BEG_UID' , $GLOBALS['refid']); @@ -60,8 +60,8 @@ if ($GLOBALS['refid'] > 0) { } // Selection boxes are now the default -define('__BEG_TIMEOUT' , CREATE_FANCY_TIME(getConfig('beg_timeout'))); -define('__BEG_UID_TIMEOUT', CREATE_FANCY_TIME(getConfig('beg_uid_timeout'))); +define('__BEG_TIMEOUT' , createFancyTime(getConfig('beg_timeout'))); +define('__BEG_UID_TIMEOUT', createFancyTime(getConfig('beg_uid_timeout'))); // Load final template LOAD_TEMPLATE("guest_".substr(basename(__FILE__), 5, -4));