X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fmember%2Fwhat-surfbar_list.php;h=a4c3b1b850d7713aa2707ad8516120fbf86f2948;hb=c74775166b7dda227bb83d8f7e1ab030fb1eb53a;hp=f5e17ede7d34d277dc6d9b393619d86c19b41851;hpb=fe8e4c180ec67e320be98e1e8dc1f9ea612c3636;p=mailer.git diff --git a/inc/modules/member/what-surfbar_list.php b/inc/modules/member/what-surfbar_list.php index f5e17ede7d..a4c3b1b850 100644 --- a/inc/modules/member/what-surfbar_list.php +++ b/inc/modules/member/what-surfbar_list.php @@ -18,6 +18,7 @@ * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * + * Copyright (c) 2009, 2010 by Mailer Developer Team * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -55,11 +56,11 @@ if ((!isExtensionActive('surfbar')) && (!isAdmin())) { $URLs = SURFBAR_GET_USER_URLS(); // Are there entries or form is submitted? -if ((isFormSent()) && (isPostRequestElementSet(('action'))) && (isPostRequestElementSet('id'))) { +if ((isFormSent()) && (isPostRequestParameterSet(('action'))) && (isPostRequestParameterSet('id'))) { // Process the form if (SURFBAR_MEMBER_DO_FORM(postRequestArray(), $URLs)) { // Action performed but shall we display it? - if (((postRequestElement('action') != 'edit') && (postRequestElement('action') != "delete")) || (isPostRequestElementSet(('execute')))) { + if (((postRequestParameter('action') != 'edit') && (postRequestParameter('action') != "delete")) || (isPostRequestParameterSet(('execute')))) { // Display "action done" message if action is wether 'edit' nor 'delete' or has been executed loadTemplate('admin_settings_saved', false, getMessage('MEMBER_SURFBAR_ACTION_DONE')); } // END - if @@ -76,12 +77,12 @@ if ((isFormSent()) && (isPostRequestElementSet(('action'))) && (isPostRequestEle $content['url'] = generateDerefererUrl($content['url']); if ($content['views_total'] > 0) { // Include link to stats - $content['views_total'] = "[".translateComma($content['views_total'])."]"; + $content['views_total'] = "[".translateComma($content['views_total'])."]"; } // END - if - $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'] = translateSurfbarUrlStatus($content['status']); + $content['url_registered'] = generateDateTime($content['url_registered'], 2); + $content['url_last_locked'] = generateDateTime($content['url_last_locked'], 2); + $content['actions'] = SURFBAR_MEMBER_ACTIONS($content['id'], $content['url_status']); + $content['url_status'] = translateSurfbarUrlStatus($content['url_status']); if (empty($content['lock_reason'])) { // Fixes some HTML problems with empty cells $content['lock_reason'] = '---';