X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-config_removeip.php;h=626e23176e7ff27419e00c1a61e852dd4c4299d4;hb=aa63aed07428a99ea09002c8d072990677700080;hp=2fb3501e65eacc4ceb2434b5c9c494859f1df52f;hpb=a090e351c49fe021fb3064325694da03402332e0;p=mailer.git diff --git a/inc/modules/admin/what-config_removeip.php b/inc/modules/admin/what-config_removeip.php index 2fb3501e65..626e23176e 100644 --- a/inc/modules/admin/what-config_removeip.php +++ b/inc/modules/admin/what-config_removeip.php @@ -38,7 +38,7 @@ // 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); } @@ -148,21 +148,21 @@ if (IS_FORM_SENT()) { switch (getConfig('anonymous_ip')) { case "127.0.0.1": - define('__CFG_ANONYMOUS_IP_LOCAL' , " selected=\"selected\""); + define('__CFG_ANONYMOUS_IP_LOCAL' , ' selected="selected"'); define('__CFG_ANONYMOUS_IP_ZERO' , ''); define('__CFG_ANONYMOUS_IP_RANDOM', ''); break; case "0.0.0.0": define('__CFG_ANONYMOUS_IP_LOCAL' , ''); - define('__CFG_ANONYMOUS_IP_ZERO' , " selected=\"selected\""); + define('__CFG_ANONYMOUS_IP_ZERO' , ' selected="selected"'); define('__CFG_ANONYMOUS_IP_RANDOM', ''); break; case "RANDOM": define('__CFG_ANONYMOUS_IP_LOCAL' , ''); define('__CFG_ANONYMOUS_IP_ZERO' , ''); - define('__CFG_ANONYMOUS_IP_RANDOM', " selected=\"selected\""); + define('__CFG_ANONYMOUS_IP_RANDOM', ' selected="selected"'); break; } // END - switch