X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-unlock_surfbar_urls.php;h=dbde6a592609de698c3b6b9b9badda27bd9af577;hb=995488beda665a1fc3de65df95f2d1ae236d1245;hp=52ee49a71757c2328c7a18c60db3849332d6c184;hpb=57227d33e870ec5cd271209c4a978a52b45c2dd6;p=mailer.git diff --git a/inc/modules/admin/what-unlock_surfbar_urls.php b/inc/modules/admin/what-unlock_surfbar_urls.php index 52ee49a717..dbde6a5926 100644 --- a/inc/modules/admin/what-unlock_surfbar_urls.php +++ b/inc/modules/admin/what-unlock_surfbar_urls.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 * @@ -67,13 +68,16 @@ if ((isPostRequestParameterSet('unlock')) && (is_array(postRequestParameter('id' // List all URLs $result = SQL_QUERY("SELECT - `id`, `userid`, `url`, UNIX_TIMESTAMP(`registered`) AS registered + `url_id`, + `url_userid`, + `url`, + UNIX_TIMESTAMP(`url_registered`) AS `url_registered` FROM `{?_MYSQL_PREFIX?}_surfbar_urls` WHERE - `status`='PENDING' + `url_status`='PENDING' ORDER BY - `id` ASC", __FILE__, __LINE__); + `url_id` ASC", __FILE__, __LINE__); // Do we have some URLs left? if (SQL_NUMROWS($result) > 0) { @@ -81,10 +85,10 @@ if (SQL_NUMROWS($result) > 0) { $OUT = ''; $SW = 2; while ($content = SQL_FETCHARRAY($result)) { // "Translate"/add content - $content['sw'] = $SW; - $content['userid'] = generateUserProfileLink($content['userid']); - $content['framekiller'] = generateFrametesterUrl($content['url']); - $content['registered'] = generateDateTime($content['registered'], 2); + $content['sw'] = $SW; + $content['userid'] = generateUserProfileLink($content['userid']); + $content['framekiller'] = generateFrametesterUrl($content['url']); + $content['url_registered'] = generateDateTime($content['url_registered'], 2); // Load row template $OUT .= loadTemplate('admin_unlock_surfbar_urls_row', true, $content);