Zeile 6 | Zeile 6 |
---|
* Website: http://mybb.com * License: http://mybb.com/about/license *
|
* Website: http://mybb.com * License: http://mybb.com/about/license *
|
* $Id: moderation_queue.php 5453 2011-04-21 23:58:33Z jammerx2 $
| * $Id$
|
*/
// Disallow direct access to this file for security reasons
| */
// Disallow direct access to this file for security reasons
|
Zeile 183 | Zeile 183 |
---|
$table->construct_header($lang->posted, array("class" => "align_center", "width" => "20%"));
$query = $db->query("
|
$table->construct_header($lang->posted, array("class" => "align_center", "width" => "20%"));
$query = $db->query("
|
SELECT t.tid, t.dateline, t.fid, t.subject, p.message AS postmessage, u.username AS username, t.uid
| SELECT t.tid, t.dateline, t.fid, t.subject, t.username AS threadusername, p.message AS postmessage, u.username AS username, t.uid
|
FROM ".TABLE_PREFIX."threads t LEFT JOIN ".TABLE_PREFIX."posts p ON (p.pid=t.firstpost) LEFT JOIN ".TABLE_PREFIX."users u ON (u.uid=t.uid)
| FROM ".TABLE_PREFIX."threads t LEFT JOIN ".TABLE_PREFIX."posts p ON (p.pid=t.firstpost) LEFT JOIN ".TABLE_PREFIX."users u ON (u.uid=t.uid)
|
Zeile 199 | Zeile 199 |
---|
$forum_name = $forum_cache[$thread['fid']]['name']; $threaddate = my_date($mybb->settings['dateformat'], $thread['dateline']); $threadtime = my_date($mybb->settings['timeformat'], $thread['dateline']);
|
$forum_name = $forum_cache[$thread['fid']]['name']; $threaddate = my_date($mybb->settings['dateformat'], $thread['dateline']); $threadtime = my_date($mybb->settings['timeformat'], $thread['dateline']);
|
$profile_link = build_profile_link($thread['username'], $thread['uid'], "_blank");
| if($thread['username'] == "") { if($thread['threadusername'] != "") { $profile_link = $thread['threadusername']; } else { $profile_link = $lang->guest; } } else { $profile_link = build_profile_link($thread['username'], $thread['uid'], "_blank"); }
|
$thread['postmessage'] = nl2br(htmlspecialchars_uni($thread['postmessage']));
$table->construct_cell("<a href=\"../{$thread['threadlink']}\" target=\"_blank\">{$thread['subject']}</a>");
| $thread['postmessage'] = nl2br(htmlspecialchars_uni($thread['postmessage']));
$table->construct_cell("<a href=\"../{$thread['threadlink']}\" target=\"_blank\">{$thread['subject']}</a>");
|
Zeile 266 | Zeile 282 |
---|
$start = 0; $current_page = 1; }
|
$start = 0; $current_page = 1; }
|
|
|
$pagination = draw_admin_pagination($current_page, $per_page, $unaproved_posts, "index.php?module=forum-moderation_queue&type=posts&page={page}");
| $pagination = draw_admin_pagination($current_page, $per_page, $unaproved_posts, "index.php?module=forum-moderation_queue&type=posts&page={page}");
|
Zeile 282 | Zeile 298 |
---|
$table->construct_header($lang->posted, array("class" => "align_center", "width" => "20%"));
$query = $db->query("
|
$table->construct_header($lang->posted, array("class" => "align_center", "width" => "20%"));
$query = $db->query("
|
SELECT p.pid, p.subject, p.message, t.subject AS threadsubject, t.tid, u.username, p.uid, t.fid
| SELECT p.pid, p.subject, p.message, p.dateline, p.username AS postusername, t.subject AS threadsubject, t.tid, u.username, p.uid, t.fid
|
FROM ".TABLE_PREFIX."posts p LEFT JOIN ".TABLE_PREFIX."threads t ON (t.tid=p.tid) LEFT JOIN ".TABLE_PREFIX."users u ON (u.uid=p.uid)
| FROM ".TABLE_PREFIX."posts p LEFT JOIN ".TABLE_PREFIX."threads t ON (t.tid=p.tid) LEFT JOIN ".TABLE_PREFIX."users u ON (u.uid=p.uid)
|
Zeile 307 | Zeile 323 |
---|
$forum_name = $forum_cache[$post['fid']]['name']; $postdate = my_date($mybb->settings['dateformat'], $post['dateline']); $posttime = my_date($mybb->settings['timeformat'], $post['dateline']);
|
$forum_name = $forum_cache[$post['fid']]['name']; $postdate = my_date($mybb->settings['dateformat'], $post['dateline']); $posttime = my_date($mybb->settings['timeformat'], $post['dateline']);
|
$profile_link = build_profile_link($post['username'], $post['uid'], "_blank");
| if($post['username'] == "") { if($post['postusername'] != "") { $profile_link = $post['postusername']; } else { $profile_link = $lang->guest; } } else { $profile_link = build_profile_link($post['username'], $post['uid'], "_blank"); }
|
$post['message'] = nl2br(htmlspecialchars_uni($post['message']));
$table->construct_cell("<a href=\"../{$post['postlink']}#pid{$post['pid']}\" target=\"_blank\">{$post['subject']}</a>");
| $post['message'] = nl2br(htmlspecialchars_uni($post['message']));
$table->construct_cell("<a href=\"../{$post['postlink']}#pid{$post['pid']}\" target=\"_blank\">{$post['subject']}</a>");
|