X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fmember%2Fwhat-surfbar_list.php;h=52831e25527994c4700ca15fd578115445368cd7;hb=ccc4a69ce9b17aa8d7b1554a3b2b017db091821b;hp=a595660af2df42efce85d037f82fcb45bf6eae35;hpb=f97a999e0737c0007ae9c3c26dfef49f75a175ac;p=mailer.git diff --git a/inc/modules/member/what-surfbar_list.php b/inc/modules/member/what-surfbar_list.php index a595660af2..52831e2552 100644 --- a/inc/modules/member/what-surfbar_list.php +++ b/inc/modules/member/what-surfbar_list.php @@ -41,9 +41,9 @@ if (!defined('__SECURITY')) { $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php'; require($INC); } elseif (!IS_MEMBER()) { - LOAD_URL('modules.php?module=index'); + redirectToUrl('modules.php?module=index'); } elseif ((!EXT_IS_ACTIVE('surfbar')) && (!IS_ADMIN())) { - addFatalMessage(__FILE__, __LINE__, getMessage('EXTENSION_PROBLEM_EXT_INACTIVE'), 'surfbar'); + addFatalMessage(__FILE__, __LINE__, generateExtensionInactiveMessage('surfbar')); return; } @@ -54,11 +54,11 @@ ADD_DESCR('member', __FILE__); $URLs = SURFBAR_GET_USER_URLS(); // Are there entries or form is submitted? -if ((IS_FORM_SENT()) && (REQUEST_ISSET_POST(('action'))) && (REQUEST_ISSET_POST(('id')))) { +if ((isFormSent()) && (REQUEST_ISSET_POST(('action'))) && (REQUEST_ISSET_POST('id'))) { // Process the form if (SURFBAR_MEMBER_DO_FORM(REQUEST_POST_ARRAY(), $URLs)) { // Action performed but shall we display it? - if (((REQUEST_POST('action') != "edit") && (REQUEST_POST('action') != "delete")) || (REQUEST_ISSET_POST(('execute')))) { + if (((REQUEST_POST('action') != 'edit') && (REQUEST_POST('action') != "delete")) || (REQUEST_ISSET_POST(('execute')))) { // Display "action done" message if action is wether 'edit' nor 'delete' or has been executed LOAD_TEMPLATE('admin_settings_saved', false, getMessage('MEMBER_SURFBAR_ACTION_DONE')); } // END - if @@ -75,15 +75,15 @@ if ((IS_FORM_SENT()) && (REQUEST_ISSET_POST(('action'))) && (REQUEST_ISSET_POST( $content['url'] = DEREFERER($content['url']); if ($content['views_total'] > 0) { // Include link to stats - $content['views_total'] = "[".TRANSLATE_COMMA($content['views_total'])."]"; + $content['views_total'] = "[".translateComma($content['views_total'])."]"; } // END - if - $content['registered'] = MAKE_DATETIME($content['registered'], "2"); - $content['last_locked'] = MAKE_DATETIME($content['last_locked'], "2"); + $content['registered'] = generateDateTime($content['registered'], '2'); + $content['last_locked'] = generateDateTime($content['last_locked'], '2'); $content['actions'] = SURFBAR_MEMBER_ACTIONS($content['id'], $content['status']); - $content['status'] = SURFBAR_TRANSLATE_STATUS($content['status']); + $content['status'] = surfbarTranslateUserStatus($content['status']); if (empty($content['lock_reason'])) { // Fixes some HTML problems with empty cells - $content['lock_reason'] = "---"; + $content['lock_reason'] = '---'; } // END - if // Load row template