X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-list_surfbar_urls.php;h=895ad0e1fd8b7c94c66b34a0359a46ef8d85be20;hb=2f0357c7ac9da6c17d361b8e7cb0b1ad09eb85f6;hp=9dd6aefa204481b171a5477776499a54c705a613;hpb=a090e351c49fe021fb3064325694da03402332e0;p=mailer.git diff --git a/inc/modules/admin/what-list_surfbar_urls.php b/inc/modules/admin/what-list_surfbar_urls.php index 9dd6aefa20..895ad0e1fd 100644 --- a/inc/modules/admin/what-list_surfbar_urls.php +++ b/inc/modules/admin/what-list_surfbar_urls.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); } // END - if @@ -156,7 +156,7 @@ if (SQL_NUMROWS($result) > 0) { $content['status'] = SURFBAR_TRANSLATE_STATUS($content['status']); $content['registered'] = MAKE_DATETIME($content['registered'], 2); $content['last_locked'] = MAKE_DATETIME($content['last_locked'], 2); - if (empty($content['lock_reason'])) $content['lock_reason'] = "---"; + if (empty($content['lock_reason'])) $content['lock_reason'] = '---'; // Load row template $OUT .= LOAD_TEMPLATE("admin_list_surfbar_urls_row", true, $content);