X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-config_birthday.php;h=bbfc37fae71121336197b0d5760a536b60a624a9;hp=bbe078d52f16aefcd988b8a2c915d891fd6413ba;hb=a090e351c49fe021fb3064325694da03402332e0;hpb=f212df3d9d1d3c7f8632040130be9e7160980de6 diff --git a/inc/modules/admin/what-config_birthday.php b/inc/modules/admin/what-config_birthday.php index bbe078d52f..bbfc37fae7 100644 --- a/inc/modules/admin/what-config_birthday.php +++ b/inc/modules/admin/what-config_birthday.php @@ -43,7 +43,7 @@ if ((!defined('__SECURITY')) || (!IS_ADMIN())) { } // Add description as navigation point -ADD_DESCR("admin", __FILE__); +ADD_DESCR('admin', __FILE__); if (IS_FORM_SENT()) { // Save configuration @@ -53,26 +53,26 @@ if (IS_FORM_SENT()) { define('__POINTS_VALUE', getConfig('birthday_points')); switch (getConfig('birthday_active')) { - case "Y": - define('__BIRTHDAY_ACTIVE_Y', " checked=\"checked\""); - define('__BIRTHDAY_ACTIVE_N', ""); + case 'Y': + define('__BIRTHDAY_ACTIVE_Y', ' chkecked="checked"'); + define('__BIRTHDAY_ACTIVE_N', ''); break; - case "N": - define('__BIRTHDAY_ACTIVE_Y', ""); - define('__BIRTHDAY_ACTIVE_N', " checked=\"checked\""); + case 'N': + define('__BIRTHDAY_ACTIVE_Y', ''); + define('__BIRTHDAY_ACTIVE_N', ' chkecked="checked"'); break; } switch (getConfig('birthday_mode')) { case "DIRECT": - define('__BIRTHDAY_MODE_DIRECT', " checked=\"checked\""); - define('__BIRTHDAY_MODE_REF' , ""); + define('__BIRTHDAY_MODE_DIRECT', ' chkecked="checked"'); + define('__BIRTHDAY_MODE_REF' , ''); break; case "REF": - define('__BIRTHDAY_MODE_DIRECT', ""); - define('__BIRTHDAY_MODE_REF' , " checked=\"checked\""); + define('__BIRTHDAY_MODE_DIRECT', ''); + define('__BIRTHDAY_MODE_REF' , ' chkecked="checked"'); break; }