Hacked By AnonymousFox
<?php
/**
* copyright : (C) 2001-2021 Advanced Internet Designs Inc.
* email : forum@prohost.org
* $Id$
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; version 2 of the License.
**/
/* Handle poll votes if any are present. */
function register_vote(&$options, $poll_id, $opt_id, $mid)
{
/* Invalid option or previously voted. */
if (!isset($options[$opt_id]) || q_singleval('SELECT id FROM fud30_poll_opt_track WHERE poll_id='. $poll_id .' AND user_id='. _uid)) {
return;
}
if (db_li('INSERT INTO fud30_poll_opt_track(poll_id, user_id, ip_addr, poll_opt) VALUES('. $poll_id .', '. _uid .', '. (!_uid ? _esc(get_ip()) : 'null') .', '. $opt_id .')', $a)) {
q('UPDATE fud30_poll_opt SET votes=votes+1 WHERE id='. $opt_id);
q('UPDATE fud30_poll SET total_votes=total_votes+1 WHERE id='. $poll_id);
$options[$opt_id][1] += 1;
q('UPDATE fud30_msg SET poll_cache='. _esc(serialize($options)) .' WHERE id='. $mid);
}
return 1;
}
$GLOBALS['__FMDSP__'] = array();
/* Needed for message threshold & reveling messages. */
if (isset($_GET['rev'])) {
$_GET['rev'] = htmlspecialchars((string)$_GET['rev']);
foreach (explode(':', $_GET['rev']) as $v) {
$GLOBALS['__FMDSP__'][(int)$v] = 1;
}
if ($GLOBALS['FUD_OPT_2'] & 32768) {
define('reveal_lnk', '/'. $_GET['rev']);
} else {
define('reveal_lnk', '&rev='. $_GET['rev']);
}
} else {
define('reveal_lnk', '');
}
/* Initialize buddy & ignore list for registered users. */
if (_uid) {
if ($usr->buddy_list) {
$usr->buddy_list = unserialize($usr->buddy_list);
}
if ($usr->ignore_list) {
$usr->ignore_list = unserialize($usr->ignore_list);
if (isset($usr->ignore_list[1])) {
$usr->ignore_list[0] =& $usr->ignore_list[1];
}
}
/* Handle temporarily un-hidden users. */
if (isset($_GET['reveal'])) {
$_GET['reveal'] = htmlspecialchars((string)$_GET['reveal']);
foreach(explode(':', $_GET['reveal']) as $v) {
$v = (int) $v;
if (isset($usr->ignore_list[$v])) {
$usr->ignore_list[$v] = 0;
}
}
if ($GLOBALS['FUD_OPT_2'] & 32768) {
define('unignore_tmp', '/'. $_GET['reveal']);
} else {
define('unignore_tmp', '&reveal='. $_GET['reveal']);
}
} else {
define('unignore_tmp', '');
}
} else {
define('unignore_tmp', '');
if (isset($_GET['reveal'])) {
unset($_GET['reveal']);
}
}
$_SERVER['QUERY_STRING_ENC'] = htmlspecialchars($_SERVER['QUERY_STRING']);
function make_tmp_unignore_lnk($id)
{
if ($GLOBALS['FUD_OPT_2'] & 32768 && strpos($_SERVER['QUERY_STRING_ENC'], '?') === false) {
$_SERVER['QUERY_STRING_ENC'] .= '?1=1';
}
if (!isset($_GET['reveal'])) {
return $_SERVER['QUERY_STRING_ENC'] .'&reveal='. $id;
} else {
return str_replace('&reveal='. $_GET['reveal'], unignore_tmp .':'. $id, $_SERVER['QUERY_STRING_ENC']);
}
}
function make_reveal_link($id)
{
if ($GLOBALS['FUD_OPT_2'] & 32768 && strpos($_SERVER['QUERY_STRING_ENC'], '?') === false) {
$_SERVER['QUERY_STRING_ENC'] .= '?1=1';
}
if (empty($GLOBALS['__FMDSP__'])) {
return $_SERVER['QUERY_STRING_ENC'] .'&rev='. $id;
} else {
return str_replace('&rev='. $_GET['rev'], reveal_lnk .':'. $id, $_SERVER['QUERY_STRING_ENC']);
}
}
/* Draws a message, needs a message object, user object, permissions array,
* flag indicating wether or not to show controls and a variable indicating
* the number of the current message (needed for cross message pager)
* last argument can be anything, allowing forms to specify various vars they
* need to.
*/
function tmpl_drawmsg($obj, $usr, $perms, $hide_controls, &$m_num, $misc)
{
$o1 =& $GLOBALS['FUD_OPT_1'];
$o2 =& $GLOBALS['FUD_OPT_2'];
$a = (int) $obj->users_opt;
$b =& $usr->users_opt;
$MOD =& $GLOBALS['MOD'];
$next_page = $next_message = $prev_message = '';
/* Draw next/prev message controls. */
if (!$hide_controls && $misc) {
/* Tree view is a special condition, we only show 1 message per page. */
if ($_GET['t'] == 'tree' || $_GET['t'] == 'tree_msg') {
$prev_message = $misc[0] ? '<a href="javascript://" onclick="fud_tree_msg_focus('.$misc[0].', \''.s.'\', \'utf-8\'); return false;"><img src="[[relativeurl]]/theme/default/images/up.png" title="Go to previous message" alt="Go to previous message" width="16" height="11" /></a>' : '';
$next_message = $misc[1] ? '<a href="javascript://" onclick="fud_tree_msg_focus('.$misc[1].', \''.s.'\', \'utf-8\'); return false;"><img alt="Go to previous message" title="Go to next message" src="[[relativeurl]]/theme/default/images/down.png" width="16" height="11" /></a>' : '';
} else {
/* Handle previous link. */
if (!$m_num && $obj->id > $obj->root_msg_id) { /* prev link on different page */
$prev_message = '<a href="[[relativeurl]]/index.php?t='.$_GET['t'].'&'._rsid.'&prevloaded=1&th='.$obj->thread_id.'&start='.($misc[0] - $misc[1]).reveal_lnk.unignore_tmp.'"><img src="[[relativeurl]]/theme/default/images/up.png" title="Go to previous message" alt="Go to previous message" width="16" height="11" /></a>';
} else if ($m_num) { /* Inline link, same page. */
$prev_message = '<a href="javascript://" onclick="chng_focus(\'#msg_num_'.$m_num.'\');"><img alt="Go to previous message" title="Go to previous message" src="[[relativeurl]]/theme/default/images/up.png" width="16" height="11" /></a>';
}
/* Handle next link. */
if ($obj->id < $obj->last_post_id) {
if ($m_num && !($misc[1] - $m_num - 1)) { /* next page link */
$next_message = '<a href="[[relativeurl]]/index.php?t='.$_GET['t'].'&'._rsid.'&prevloaded=1&th='.$obj->thread_id.'&start='.($misc[0] + $misc[1]).reveal_lnk.unignore_tmp.'"><img alt="Go to previous message" title="Go to next message" src="[[relativeurl]]/theme/default/images/down.png" width="16" height="11" /></a>';
$next_page = '<a href="[[relativeurl]]/index.php?t='.$_GET['t'].'&'._rsid.'&prevloaded=1&th='.$obj->thread_id.'&start='.($misc[0] + $misc[1]).reveal_lnk.unignore_tmp.'">Next Page <img src="[[relativeurl]]/theme/default/images/goto.gif" width="9" height="9" alt="" /></a>';
} else {
$next_message = '<a href="javascript://" onclick="chng_focus(\'#msg_num_'.($m_num + 2).'\');"><img alt="Go to next message" title="Go to next message" src="[[relativeurl]]/theme/default/images/down.png" width="16" height="11" /></a>';
}
}
}
++$m_num;
}
$user_login = $obj->user_id ? $obj->login : $GLOBALS['ANON_NICK'];
/* Check if the message should be ignored and it is not temporarily revelead. */
if ($usr->ignore_list && !empty($usr->ignore_list[$obj->poster_id]) && !isset($GLOBALS['__FMDSP__'][$obj->id])) {
return !$hide_controls ? '<tr>
<td>
<table border="0" cellspacing="0" cellpadding="0" class="MsgTable">
<tr>
<td class="MsgIg al">
<a name="msg_num_'.$m_num.'"></a>
<a name="msg_'.$obj->id.'"></a>
'.($obj->user_id ? 'Message by <a href="[[relativeurl]]/index.php?t=usrinfo&'._rsid.'&id='.$obj->user_id.'">'.$obj->login.'</a> is ignored' : ''.$GLOBALS['ANON_NICK'].' is ignored' ) .'
[<a href="[[relativeurl]]/index.php?'. make_reveal_link($obj->id).'">reveal message</a>]
[<a href="[[relativeurl]]/index.php?'.make_tmp_unignore_lnk($obj->poster_id).'">reveal all messages by '.$user_login.'</a>]
[<a href="[[relativeurl]]/index.php?t=ignore_list&del='.$obj->poster_id.'&redr=1&'._rsid.'&SQ='.$GLOBALS['sq'].'">stop ignoring this user</a>]</td>
<td class="MsgIg" align="right">'.$prev_message.$next_message.'
</td>
</tr>
</table>
</td>
</tr>' : '<tr class="MsgR1 GenText">
<td><a name="msg_num_'.$m_num.'"></a> <a name="msg_'.$obj->id.'"></a>Post by '.$user_login.' is ignored </td>
</tr>';
}
if ($obj->user_id && !$hide_controls) {
$custom_tag = $obj->custom_status ? '<br />'.$obj->custom_status.'' : '';
$c = (int) $obj->level_opt;
if ($obj->avatar_loc && $a & 8388608 && $b & 8192 && $o1 & 28 && !($c & 2)) {
if (!($c & 1)) {
$level_name =& $obj->level_name;
$level_image = $obj->level_img ? ' <img src="[[relativeurl]]/images/'.$obj->level_img.'" alt="" />' : '';
} else {
$level_name = $level_image = '';
}
} else {
$level_image = $obj->level_img ? ' <img src="[[relativeurl]]/images/'.$obj->level_img.'" alt="" />' : '';
$obj->avatar_loc = '';
$level_name =& $obj->level_name;
}
$avatar = ($obj->avatar_loc || $level_image) ? '<td class="avatarPad wo">'.$obj->avatar_loc.$level_image.'</td>' : '';
$dmsg_tags = ($custom_tag || $level_name) ? '<div class="ctags">'.$level_name.$custom_tag.'</div>' : '';
if (($o2 & 32 && !($a & 32768)) || $b & 1048576) {
$online_indicator = (($obj->time_sec + $GLOBALS['LOGEDIN_TIMEOUT'] * 60) > __request_timestamp__) ? '<img src="[[relativeurl]]/theme/default/images/online.png" alt="'.$obj->login.' is currently online" title="'.$obj->login.' is currently online" width="16" height="16" /> ' : '<img src="[[relativeurl]]/theme/default/images/offline.png" alt="'.$obj->login.' is currently offline" title="'.$obj->login.' is currently offline" width="16" height="16" /> ';
} else {
$online_indicator = '';
}
$user_link = '<a href="[[relativeurl]]/index.php?t=usrinfo&id='.$obj->user_id.'&'._rsid.'">'.$user_login.'</a>';
$location = $obj->location ? '<br /><b>Location: </b>'.(strlen($obj->location) > $GLOBALS['MAX_LOCATION_SHOW'] ? substr($obj->location, 0, $GLOBALS['MAX_LOCATION_SHOW']) . '...' : $obj->location).'' : '';
if (_uid && _uid != $obj->user_id) {
$buddy_link = !isset($usr->buddy_list[$obj->user_id]) ? '<a href="[[relativeurl]]/index.php?t=buddy_list&add='.$obj->user_id.'&'._rsid.'&SQ='.$GLOBALS['sq'].'">add to buddy list</a><br />' : '<a href="[[relativeurl]]/index.php?t=buddy_list&del='.$obj->user_id.'&redr=1&'._rsid.'&SQ='.$GLOBALS['sq'].'">remove from buddy list</a><br />';
$ignore_link = !isset($usr->ignore_list[$obj->user_id]) ? '<a href="[[relativeurl]]/index.php?t=ignore_list&add='.$obj->user_id.'&'._rsid.'&SQ='.$GLOBALS['sq'].'">ignore all messages by this user</a>' : '<a href="[[relativeurl]]/index.php?t=ignore_list&del='.$obj->user_id.'&redr=1&'._rsid.'&SQ='.$GLOBALS['sq'].'">stop ignoring messages by this user</a>';
$dmsg_bd_il = ''.$buddy_link.$ignore_link.'<br />';
} else {
$dmsg_bd_il = '';
}
/* Show im buttons if need be. */
if ($b & 16384) {
$im = '';
if ($obj->icq) {
$im .= '<a href="[[relativeurl]]/index.php?t=usrinfo&id='.$obj->poster_id.'&'._rsid.'#icq_msg"><img title="'.$obj->icq.'" src="[[relativeurl]]/theme/default/images/icq.png" alt="" /></a>';
}
if ($obj->facebook) {
$im .= '<a href="https://www.facebook.com/'.$obj->facebook.'"><img alt="" src="[[relativeurl]]/theme/default/images/facebook.png" title="'.$obj->facebook.'" /></a>';
}
if ($obj->yahoo) {
$im .= '<a href="http://edit.yahoo.com/config/send_webmesg?.target='.$obj->yahoo.'&.src=pg"><img alt="" src="[[relativeurl]]/theme/default/images/yahoo.png" title="'.$obj->yahoo.'" /></a>';
}
if ($obj->jabber) {
$im .= '<img src="[[relativeurl]]/theme/default/images/jabber.png" title="'.$obj->jabber.'" alt="" />';
}
if ($obj->google) {
$im .= '<img src="[[relativeurl]]/theme/default/images/google.png" title="'.$obj->google.'" alt="" />';
}
if ($obj->skype) {
$im .= '<a href="callto://'.$obj->skype.'"><img src="[[relativeurl]]/theme/default/images/skype.png" title="'.$obj->skype.'" alt="" /></a>';
}
if ($obj->twitter) {
$im .= '<a href="https://twitter.com/'.$obj->twitter.'"><img src="[[relativeurl]]/theme/default/images/twitter.png" title="'.$obj->twitter.'" alt="" /></a>';
}
if ($im) {
$dmsg_im_row = ''.$im.'<br />';
} else {
$dmsg_im_row = '';
}
} else {
$dmsg_im_row = '';
}
} else {
$user_link = $obj->user_id ? ''.$user_login.'' : ''.$user_login;
$dmsg_tags = $dmsg_im_row = $dmsg_bd_il = $location = $online_indicator = $avatar = '';
}
/* Display message body.
* If we have message threshold & the entirity of the post has been revelead show a
* preview otherwise if the message body exists show an actual body.
* If there is no body show a 'no-body' message.
*/
if (!$hide_controls && $obj->message_threshold && $obj->length_preview && $obj->length > $obj->message_threshold && !isset($GLOBALS['__FMDSP__'][$obj->id])) {
$msg_body = '<span class="MsgBodyText">'.read_msg_body($obj->offset_preview, $obj->length_preview, $obj->file_id_preview).'</span>
...<br /><br /><div class="ac">[ <a href="[[relativeurl]]/index.php?'.make_reveal_link($obj->id).'">Show the rest of the message</a> ]</div>';
} else if ($obj->length) {
$msg_body = '<span class="MsgBodyText">'.read_msg_body($obj->foff, $obj->length, $obj->file_id).'</span>';
} else {
$msg_body = 'No Message Body';
}
/* Draw file attachments if there are any. */
$drawmsg_file_attachments = '';
if ($obj->attach_cnt && !empty($obj->attach_cache)) {
$atch = unserialize($obj->attach_cache);
if (!empty($atch)) {
foreach ($atch as $v) {
$sz = $v[2] / 1024;
$drawmsg_file_attachments .= '<li>
<img alt="" src="[[relativeurl]]/images/mime/'.$v[4].'" class="at" />
<span class="GenText fb">Attachment:</span> <a href="[[relativeurl]]/index.php?t=getfile&id='.$v[0].'&'._rsid.'" title="'.$v[1].'">'.$v[1].'</a>
<br />
<span class="SmallText">(Size: '.($sz < 1000 ? number_format($sz, 2).'KB' : number_format($sz/1024, 2).'MB').', Downloaded '.convertPlural($v[3], array(''.$v[3].' time',''.$v[3].' times')).')</span>
</li>';
}
$drawmsg_file_attachments = '<ul class="AttachmentsList">
'.$drawmsg_file_attachments.'
</ul>';
}
/* Append session to getfile. */
if (_uid) {
if ($o1 & 128 && !isset($_COOKIE[$GLOBALS['COOKIE_NAME']])) {
$msg_body = str_replace('<img src="index.php?t=getfile', '<img src="index.php?t=getfile&S='. s, $msg_body);
$tap = 1;
}
if ($o2 & 32768 && (isset($tap) || $o2 & 8192)) {
$pos = 0;
while (($pos = strpos($msg_body, '<img src="index.php/fa/', $pos)) !== false) {
$pos = strpos($msg_body, '"', $pos + 11);
$msg_body = substr_replace($msg_body, _rsid, $pos, 0);
}
}
}
}
if ($obj->poll_cache) {
$obj->poll_cache = unserialize($obj->poll_cache);
}
/* Handle poll votes. */
if (!empty($_POST['poll_opt']) && ($_POST['poll_opt'] = (int)$_POST['poll_opt']) && !($obj->thread_opt & 1) && $perms & 512) {
if (register_vote($obj->poll_cache, $obj->poll_id, $_POST['poll_opt'], $obj->id)) {
$obj->total_votes += 1;
$obj->cant_vote = 1;
}
unset($_GET['poll_opt']);
}
/* Display poll if there is one. */
if ($obj->poll_id && $obj->poll_cache) {
/* We need to determine if we allow the user to vote or see poll results. */
$show_res = 1;
if (isset($_GET['pl_view']) && !isset($_POST['pl_view'])) {
$_POST['pl_view'] = $_GET['pl_view'];
}
/* Various conditions that may prevent poll voting. */
if (!$hide_controls && !$obj->cant_vote &&
(!isset($_POST['pl_view']) || $_POST['pl_view'] != $obj->poll_id) &&
($perms & 512 && (!($obj->thread_opt & 1) || $perms & 4096)) &&
(!$obj->expiry_date || ($obj->creation_date + $obj->expiry_date) > __request_timestamp__) &&
/* Check if the max # of poll votes was reached. */
(!$obj->max_votes || $obj->total_votes < $obj->max_votes)
) {
$show_res = 0;
}
$i = 0;
$poll_data = '';
foreach ($obj->poll_cache as $k => $v) {
++$i;
if ($show_res) {
$length = ($v[1] && $obj->total_votes) ? round($v[1] / $obj->total_votes * 100) : 0;
$poll_data .= '<tr class="'.alt_var('msg_poll_alt_clr','RowStyleB','RowStyleA').'">
<td>'.$i.'.</td>
<td>'.$v[0].'</td>
<td><img src="[[relativeurl]]/theme/default/images/poll_pix.gif" alt="" height="10" width="'.$length.'" /> '.$v[1].' / '.$length.'%</td>
</tr>';
} else {
$poll_data .= '<tr class="'.alt_var('msg_poll_alt_clr','RowStyleB','RowStyleA').'">
<td>'.$i.'.</td>
<td colspan="2"><label><input type="radio" name="poll_opt" value="'.$k.'" /> '.$v[0].'</label></td>
</tr>';
}
}
if (!$show_res) {
$poll = '<br />
<form action="[[relativeurl]]/index.php?'.htmlspecialchars($_SERVER['QUERY_STRING']).'#msg_'.$obj->id.'" method="post">'._hs.'
<table cellspacing="1" cellpadding="2" class="PollTable">
<tr>
<th class="nw" colspan="3">'.$obj->poll_name.'<span class="ptp">[ '.$obj->total_votes.' '.convertPlural($obj->total_votes, array('vote','votes')).' ]</span></th>
</tr>
'.$poll_data.'
<tr class="'.alt_var('msg_poll_alt_clr','RowStyleB','RowStyleA').' ar">
<td colspan="3">
<input type="submit" class="button" name="pl_vote" value="Vote" />
'.($obj->total_votes ? '<input type="submit" class="button" name="pl_res" value="View Results" />' : '' ) .'
</td>
</tr>
</table>
<input type="hidden" name="pl_view" value="'.$obj->poll_id.'" />
</form>
<br />';
} else {
$poll = '<br />
<table cellspacing="1" cellpadding="2" class="PollTable">
<tr>
<th class="nw" colspan="3">'.$obj->poll_name.'<span class="vt">[ '.$obj->total_votes.' '.convertPlural($obj->total_votes, array('vote','votes')).' ]</span></th>
</tr>
'.$poll_data.'
</table>
<br />';
}
if (($p = strpos($msg_body, '{POLL}')) !== false) {
$msg_body = substr_replace($msg_body, $poll, $p, 6);
} else {
$msg_body = $poll . $msg_body;
}
}
/* Determine if the message was updated and if this needs to be shown. */
if ($obj->update_stamp) {
if ($obj->updated_by != $obj->poster_id && $o1 & 67108864) {
$modified_message = '<p class="fl">[Updated on: '.print_date('%a, %d %B %Y %H:%M', $obj->update_stamp).'] by Moderator</p>';
} else if ($obj->updated_by == $obj->poster_id && $o1 & 33554432) {
$modified_message = '<p class="fl">[Updated on: '.print_date('%a, %d %B %Y %H:%M', $obj->update_stamp).']</p>';
} else {
$modified_message = '';
}
} else {
$modified_message = '';
}
if ($_GET['t'] != 'tree' && $_GET['t'] != 'msg') {
$lnk = d_thread_view;
} else {
$lnk =& $_GET['t'];
}
$rpl = '';
if (!$hide_controls) {
/* Show reply links, eg: [message #1 is a reply to message #2]. */
if ($o2 & 536870912) {
if ($obj->reply_to && $obj->reply_to != $obj->id) {
$rpl = '<span class="SmallText">[<a href="[[relativeurl]]/index.php?t='.$lnk.'&th='.$obj->thread_id.'&goto='.$obj->id.'&'._rsid.'#msg_'.$obj->id.'">message #'.$obj->id.'</a> is a reply to <a href="[[relativeurl]]/index.php?t='.$lnk.'&th='.$obj->thread_id.'&goto='.$obj->reply_to.'&'._rsid.'#msg_'.$obj->reply_to.'">message #'.$obj->reply_to.'</a>]</span>';
} else {
$rpl = '<span class="SmallText">[<a href="[[relativeurl]]/index.php?t='.$lnk.'&th='.$obj->thread_id.'&goto='.$obj->id.'&'._rsid.'#msg_'.$obj->id.'">message #'.$obj->id.'</a>]</span>';
}
}
/* Little trick, this variable will only be available if we have a next link leading to another page. */
if (empty($next_page)) {
$next_page = ' ';
}
// Edit button if editing is enabled, EDIT_TIME_LIMIT has not transpired, and there are no replies.
if (_uid &&
($perms & 16 ||
(_uid == $obj->poster_id &&
(!$GLOBALS['EDIT_TIME_LIMIT'] ||
__request_timestamp__ - $obj->post_stamp < $GLOBALS['EDIT_TIME_LIMIT'] * 60
) &&
(($GLOBALS['FUD_OPT_3'] & 1024) || $obj->id == $obj->last_post_id))
)
)
{
$edit_link = '<a href="[[relativeurl]]/index.php?t=post&msg_id='.$obj->id.'&'._rsid.'"><img alt="" src="[[relativeurl]]/theme/default/images/msg_edit.gif" width="71" height="18" /></a> ';
} else {
$edit_link = '';
}
if (!($obj->thread_opt & 1) || $perms & 4096) {
$reply_link = '<a href="[[relativeurl]]/index.php?t=post&reply_to='.$obj->id.'&'._rsid.'"><img alt="" src="[[relativeurl]]/theme/default/images/msg_reply.gif" width="71" height="18" /></a> ';
$quote_link = '<a href="[[relativeurl]]/index.php?t=post&reply_to='.$obj->id.'&quote=true&'._rsid.'"><img alt="" src="[[relativeurl]]/theme/default/images/msg_quote.gif" width="71" height="18" /></a>';
} else {
$reply_link = $quote_link = '';
}
}
return '<tr>
<td class="MsgSpacer">
<table cellspacing="0" cellpadding="0" class="MsgTable">
<tr>
<td class="MsgR1 vt al expanded"><a name="msg_num_'.$m_num.'"></a><a name="msg_'.$obj->id.'"></a>'.($obj->icon && !$hide_controls ? '<img src="[[relativeurl]]/images/message_icons/'.$obj->icon.'" alt="'.$obj->icon.'" /> ' : '' ) .'<span class="MsgSubText"><a href="[[relativeurl]]/index.php?t='.$lnk.'&th='.$obj->thread_id.'&goto='.$obj->id.'&'._rsid.'#msg_'.$obj->id.'" class="MsgSubText">'.$obj->subject.'</a></span> '.$rpl.'</td>
<td class="MsgR1 vt ar"><span class="DateText">'.print_date('%a, %d %B %Y %H:%M', $obj->post_stamp).'</span> '.$prev_message.$next_message.'</td>
</tr>
<tr class="MsgR2">
<td class="MsgR2" colspan="2">
<table cellspacing="0" cellpadding="0" class="ContentTable">
<tr class="MsgR2">
'.$avatar.'
<td class="msgud">
'.$online_indicator.'
'.$user_link.'
'.(!$hide_controls ? ''.($obj->disp_flag_cc && $GLOBALS['FUD_OPT_3'] & 524288 ? ' <img src="[[relativeurl]]/images/flags/'.$obj->disp_flag_cc.'.png" border="0" width="16" height="11" title="'.$obj->flag_country.'" alt="'.$obj->flag_country.'"/>' : '' ) .($obj->user_id ? '<br /><b>Messages:</b> '.$obj->posted_msg_count.'<br /><b>Registered:</b> '.print_date('%B %Y', $obj->join_date).' '.$location.'' : '' ) .'' : '' ) .'
'.($GLOBALS['FUD_OPT_4'] & 4 && $obj->poster_id > 0 ? '<div class="karma_usr_'.$obj->poster_id.' SmallText">
'.($MOD ? '<a href="javascript://" onclick="window_open(\'[[relativeurl]]/index.php?t=karma_track&'._rsid.'&msgid='.$obj->id.'\', \'karma_rating_track\', 300, 400);" class="karma">' : '' ) .'
<b>Karma:</b> '.$obj->karma.'
'.($MOD ? '</a>' : '' ) .'
' : '' ) .'</div>
</td>
<td class="msgud">'.$dmsg_tags.'</td>
<td class="msgot">'.$dmsg_bd_il.$dmsg_im_row.(!$hide_controls ? ''.(($obj->host_name && $o1 & 268435456) ? '<b>From:</b> '.$obj->host_name.'<br />' : '' ) .(($b & 1048576 || $usr->md || $o1 & 134217728) ? '<b>IP:</b> <a href="[[relativeurl]]/index.php?t=ip&ip='.$obj->ip_addr.'&'._rsid.'">'.$obj->ip_addr.'</a>' : '' ) .'' : '' ) .'</td>
</tr>
</table>
</td>
</tr>
<tr>
<td colspan="2" class="MsgR3">
'.$msg_body.'
'.$drawmsg_file_attachments.'
'.(!$hide_controls ? ''.(($obj->sig && $o1 & 32768 && $obj->msg_opt & 1 && $b & 4096 && !($a & 67108864)) ? '<br /><br /><div class="signature" />'.$obj->sig.'</div>' : '' ) .'
<div class="SmallText clear">'.$modified_message.'<p class="fr"><a href="[[relativeurl]]/index.php?t=report&msg_id='.$obj->id.'&'._rsid.'" rel="nofollow">Report message to a moderator</a></p>' : '' ) .'</div>
</td></tr>
'.(!$hide_controls ? '<tr>
<td colspan="2" class="MsgToolBar">
<table border="0" cellspacing="0" cellpadding="0" class="wa">
<tr>
<td class="al nw">
'.($obj->user_id ? '<a href="[[relativeurl]]/index.php?t=usrinfo&id='.$obj->user_id.'&'._rsid.'"><img alt="" src="[[relativeurl]]/theme/default/images/msg_about.gif" /></a> '.(($o1 & 4194304 && $a & 16) ? '<a href="[[relativeurl]]/index.php?t=email&toi='.$obj->user_id.'&'._rsid.'" rel="nofollow"><img alt="" src="[[relativeurl]]/theme/default/images/msg_email.gif" width="71" height="18" /></a> ' : '' ) .($o1 & 1024 ? '<a href="[[relativeurl]]/index.php?t=ppost&toi='.$obj->user_id.'&rmid='.$obj->id.'&'._rsid.'"><img alt="Send a private message to this user" title="Send a private message to this user" src="[[relativeurl]]/theme/default/images/msg_pm.gif" width="71" height="18" /></a>' : '' ) .'' : '' ) .'
'.(($GLOBALS['FUD_OPT_4'] & 4 && $perms & 1024 && $obj->poster_id > 0 && !$obj->cant_karma && $obj->poster_id != $usr->id) ? '
<span id=karma_link_'.$obj->id.' class="SmallText">Rate author:
<a href="javascript://" onclick="changeKarma('.$obj->id.','.$obj->poster_id.',\'up\',\''.s.'\',\''.$usr->sq.'\');" class="karma up">+1</a>
<a href="javascript://" onclick="changeKarma('.$obj->id.','.$obj->poster_id.',\'down\',\''.s.'\',\''.$usr->sq.'\');" class="karma down">-1</a>
</span>
' : '' ) .'
</td>
<td class="GenText wa ac">'.$next_page.'</td>
<td class="nw ar">
'.($perms & 32 ? '<a href="[[relativeurl]]/index.php?t=mmod&del='.$obj->id.'&'._rsid.'"><img alt="" src="[[relativeurl]]/theme/default/images/msg_delete.gif" width="71" height="18" /></a> ' : '' ) .'
'.$edit_link.'
'.$reply_link.'
'.$quote_link.'
</td>
</tr>
</table>
</td>
</tr>' : '' ) .'
</table>
</td></tr>';
}
?>
Hacked By AnonymousFox1.0, Coded By AnonymousFox