mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
Merge in r8940, r8941, r8942, r8945, r8946, r8947, r8949, r8950, r8951
git-svn-id: file:///svn/phpbb/trunk@8952 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
0b6dd99a76
commit
c439b286e9
14 changed files with 40 additions and 27 deletions
|
@ -188,8 +188,7 @@ class ...
|
||||||
<li><code>/includes/db/firebird.php</code><br />Firebird/Interbase Database Abstraction Layer</li>
|
<li><code>/includes/db/firebird.php</code><br />Firebird/Interbase Database Abstraction Layer</li>
|
||||||
<li><code>/includes/db/msssql.php</code><br />MSSQL Database Abstraction Layer</li>
|
<li><code>/includes/db/msssql.php</code><br />MSSQL Database Abstraction Layer</li>
|
||||||
<li><code>/includes/db/mssql_odbc.php</code><br />MSSQL ODBC Database Abstraction Layer for MSSQL</li>
|
<li><code>/includes/db/mssql_odbc.php</code><br />MSSQL ODBC Database Abstraction Layer for MSSQL</li>
|
||||||
<li><code>/includes/db/mysql.php</code><br />MySQL Database Abstraction Layer for MySQL 3.x/4.0.x</li>
|
<li><code>/includes/db/mysql.php</code><br />MySQL Database Abstraction Layer for MySQL 3.x/4.0.x/4.1.x/5.x
|
||||||
<li><code>/includes/db/mysql4.php</code><br />MySQL4 Database Abstraction Layer for MySQL 4.1.x/5.x</li>
|
|
||||||
<li><code>/includes/db/mysqli.php</code><br />MySQLi Database Abstraction Layer</li>
|
<li><code>/includes/db/mysqli.php</code><br />MySQLi Database Abstraction Layer</li>
|
||||||
<li><code>/includes/db/oracle.php</code><br />Oracle Database Abstraction Layer</li>
|
<li><code>/includes/db/oracle.php</code><br />Oracle Database Abstraction Layer</li>
|
||||||
<li><code>/includes/db/postgres.php</code><br />PostgreSQL Database Abstraction Layer</li>
|
<li><code>/includes/db/postgres.php</code><br />PostgreSQL Database Abstraction Layer</li>
|
||||||
|
|
|
@ -1784,6 +1784,7 @@ function message_history($msg_id, $user_id, $message_row, $folder, $in_post_mode
|
||||||
}
|
}
|
||||||
|
|
||||||
$template->assign_block_vars('history_row', array(
|
$template->assign_block_vars('history_row', array(
|
||||||
|
'MESSAGE_AUTHOR_QUOTE' => (($in_post_mode && $auth->acl_get('u_sendpm') && $author_id != ANONYMOUS && $author_id != $user->data['user_id']) ? addslashes(get_username_string('username', $author_id, $row['username'], $row['user_colour'], $row['username'])) : ''),
|
||||||
'MESSAGE_AUTHOR_FULL' => get_username_string('full', $author_id, $row['username'], $row['user_colour'], $row['username']),
|
'MESSAGE_AUTHOR_FULL' => get_username_string('full', $author_id, $row['username'], $row['user_colour'], $row['username']),
|
||||||
'MESSAGE_AUTHOR_COLOUR' => get_username_string('colour', $author_id, $row['username'], $row['user_colour'], $row['username']),
|
'MESSAGE_AUTHOR_COLOUR' => get_username_string('colour', $author_id, $row['username'], $row['user_colour'], $row['username']),
|
||||||
'MESSAGE_AUTHOR' => get_username_string('username', $author_id, $row['username'], $row['user_colour'], $row['username']),
|
'MESSAGE_AUTHOR' => get_username_string('username', $author_id, $row['username'], $row['user_colour'], $row['username']),
|
||||||
|
|
|
@ -938,7 +938,7 @@ function user_ban($mode, $ban, $ban_len, $ban_len_other, $ban_exclude, $ban_reas
|
||||||
$sql = "SELECT $type
|
$sql = "SELECT $type
|
||||||
FROM " . BANLIST_TABLE . "
|
FROM " . BANLIST_TABLE . "
|
||||||
WHERE $sql_where
|
WHERE $sql_where
|
||||||
AND ban_exclude = $ban_exclude";
|
AND ban_exclude = " . (int) $ban_exclude;
|
||||||
$result = $db->sql_query($sql);
|
$result = $db->sql_query($sql);
|
||||||
|
|
||||||
// Reset $sql_where, because we use it later...
|
// Reset $sql_where, because we use it later...
|
||||||
|
|
|
@ -779,7 +779,7 @@ function mcp_delete_topic($topic_ids)
|
||||||
|
|
||||||
foreach ($data as $topic_id => $row)
|
foreach ($data as $topic_id => $row)
|
||||||
{
|
{
|
||||||
add_log('mod', $row['forum_id'], 0, 'LOG_TOPIC_DELETED', $row['topic_title']);
|
add_log('mod', $row['forum_id'], $topic_id, 'LOG_DELETE_' . ($row['topic_moved_id'] ? 'SHADOW_' : '') . 'TOPIC', $row['topic_title']);
|
||||||
}
|
}
|
||||||
|
|
||||||
$return = delete_topics('topic_id', $topic_ids);
|
$return = delete_topics('topic_id', $topic_ids);
|
||||||
|
@ -789,8 +789,17 @@ function mcp_delete_topic($topic_ids)
|
||||||
confirm_box(false, (sizeof($topic_ids) == 1) ? 'DELETE_TOPIC' : 'DELETE_TOPICS', $s_hidden_fields);
|
confirm_box(false, (sizeof($topic_ids) == 1) ? 'DELETE_TOPIC' : 'DELETE_TOPICS', $s_hidden_fields);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!isset($_REQUEST['quickmod']))
|
||||||
|
{
|
||||||
$redirect = request_var('redirect', 'index.' . PHP_EXT);
|
$redirect = request_var('redirect', 'index.' . PHP_EXT);
|
||||||
$redirect = reapply_sid($redirect);
|
$redirect = reapply_sid($redirect);
|
||||||
|
$redirect_message = 'PAGE';
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$redirect = append_sid('viewforum', 'f=' . $forum_id);
|
||||||
|
$redirect_message = 'FORUM';
|
||||||
|
}
|
||||||
|
|
||||||
if (!$success_msg)
|
if (!$success_msg)
|
||||||
{
|
{
|
||||||
|
@ -798,9 +807,8 @@ function mcp_delete_topic($topic_ids)
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
$redirect_url = append_sid('viewforum', 'f=' . $forum_id);
|
meta_refresh(3, $redirect);
|
||||||
meta_refresh(3, $redirect_url);
|
trigger_error($user->lang[$success_msg] . '<br /><br />' . sprintf($user->lang['RETURN_' . $redirect_message], '<a href="' . $redirect . '">', '</a>'));
|
||||||
trigger_error($user->lang[$success_msg] . '<br /><br />' . sprintf($user->lang['RETURN_FORUM'], '<a href="' . $redirect_url . '">', '</a>'));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -65,7 +65,7 @@ class mcp_reports
|
||||||
{
|
{
|
||||||
case 'report_details':
|
case 'report_details':
|
||||||
|
|
||||||
$user->add_lang('posting');
|
$user->add_lang(array('posting', 'viewforum'));
|
||||||
|
|
||||||
$post_id = request_var('p', 0);
|
$post_id = request_var('p', 0);
|
||||||
|
|
||||||
|
@ -200,6 +200,7 @@ class mcp_reports
|
||||||
'U_MCP_USER_NOTES' => append_sid('mcp', 'i=notes&mode=user_notes&u=' . $post_info['user_id']),
|
'U_MCP_USER_NOTES' => append_sid('mcp', 'i=notes&mode=user_notes&u=' . $post_info['user_id']),
|
||||||
'U_MCP_WARN_REPORTER' => ($auth->acl_get('m_warn')) ? append_sid('mcp', 'i=warn&mode=warn_user&u=' . $report['user_id']) : '',
|
'U_MCP_WARN_REPORTER' => ($auth->acl_get('m_warn')) ? append_sid('mcp', 'i=warn&mode=warn_user&u=' . $report['user_id']) : '',
|
||||||
'U_MCP_WARN_USER' => ($auth->acl_get('m_warn')) ? append_sid('mcp', 'i=warn&mode=warn_user&u=' . $post_info['user_id']) : '',
|
'U_MCP_WARN_USER' => ($auth->acl_get('m_warn')) ? append_sid('mcp', 'i=warn&mode=warn_user&u=' . $post_info['user_id']) : '',
|
||||||
|
'U_VIEW_FORUM' => append_sid('viewforum', 'f=' . $post_info['forum_id']),
|
||||||
'U_VIEW_POST' => append_sid('viewtopic', 'f=' . $post_info['forum_id'] . '&p=' . $post_info['post_id'] . '#p' . $post_info['post_id']),
|
'U_VIEW_POST' => append_sid('viewtopic', 'f=' . $post_info['forum_id'] . '&p=' . $post_info['post_id'] . '#p' . $post_info['post_id']),
|
||||||
'U_VIEW_TOPIC' => append_sid('viewtopic', 'f=' . $post_info['forum_id'] . '&t=' . $post_info['topic_id']),
|
'U_VIEW_TOPIC' => append_sid('viewtopic', 'f=' . $post_info['forum_id'] . '&t=' . $post_info['topic_id']),
|
||||||
|
|
||||||
|
|
|
@ -371,11 +371,11 @@ function split_topic($action, $topic_id, $to_forum_id, $subject)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
$forum_info = get_forum_data(array($to_forum_id), 'm_split');
|
$forum_info = get_forum_data(array($to_forum_id), 'f_post');
|
||||||
|
|
||||||
if (!sizeof($forum_info))
|
if (!sizeof($forum_info))
|
||||||
{
|
{
|
||||||
$template->assign_var('MESSAGE', $user->lang['NOT_MODERATOR']);
|
$template->assign_var('MESSAGE', $user->lang['USER_CANNOT_POST']);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -59,7 +59,7 @@ $lang = array_merge($lang, array(
|
||||||
'ATTACH_MAX_FILESIZE' => 'Maximum file size',
|
'ATTACH_MAX_FILESIZE' => 'Maximum file size',
|
||||||
'ATTACH_MAX_FILESIZE_EXPLAIN' => 'Maximum size of each file, with 0 being unlimited.',
|
'ATTACH_MAX_FILESIZE_EXPLAIN' => 'Maximum size of each file, with 0 being unlimited.',
|
||||||
'ATTACH_MAX_PM_FILESIZE' => 'Maximum file size messaging',
|
'ATTACH_MAX_PM_FILESIZE' => 'Maximum file size messaging',
|
||||||
'ATTACH_MAX_PM_FILESIZE_EXPLAIN' => 'Maximum drive space available per user for private message attachments, with 0 being unlimited.',
|
'ATTACH_MAX_PM_FILESIZE_EXPLAIN' => 'Maximum size of each file, with 0 being unlimited, attached to a private message.',
|
||||||
'ATTACH_ORPHAN_URL' => 'Orphan attachments',
|
'ATTACH_ORPHAN_URL' => 'Orphan attachments',
|
||||||
'ATTACH_POST_ID' => 'Post ID',
|
'ATTACH_POST_ID' => 'Post ID',
|
||||||
'ATTACH_QUOTA' => 'Total attachment quota',
|
'ATTACH_QUOTA' => 'Total attachment quota',
|
||||||
|
@ -105,8 +105,8 @@ $lang = array_merge($lang, array(
|
||||||
'IMAGICK_PATH' => 'Imagemagick path',
|
'IMAGICK_PATH' => 'Imagemagick path',
|
||||||
'IMAGICK_PATH_EXPLAIN' => 'Full path to the imagemagick convert application, e.g. <samp>/usr/bin/</samp>.',
|
'IMAGICK_PATH_EXPLAIN' => 'Full path to the imagemagick convert application, e.g. <samp>/usr/bin/</samp>.',
|
||||||
|
|
||||||
'MAX_ATTACHMENTS' => 'Max attachments per post',
|
'MAX_ATTACHMENTS' => 'Maximum number of attachments per post',
|
||||||
'MAX_ATTACHMENTS_PM' => 'Max attachments per message',
|
'MAX_ATTACHMENTS_PM' => 'Maximum number of attachments per private message',
|
||||||
'MAX_EXTGROUP_FILESIZE' => 'Maximum file size',
|
'MAX_EXTGROUP_FILESIZE' => 'Maximum file size',
|
||||||
'MAX_IMAGE_SIZE' => 'Maximum image dimensions',
|
'MAX_IMAGE_SIZE' => 'Maximum image dimensions',
|
||||||
'MAX_IMAGE_SIZE_EXPLAIN' => 'Maximum size of image attachments. Set both values to 0px by 0px to disable dimension checking.',
|
'MAX_IMAGE_SIZE_EXPLAIN' => 'Maximum size of image attachments. Set both values to 0px by 0px to disable dimension checking.',
|
||||||
|
|
|
@ -475,6 +475,7 @@ $lang = array_merge($lang, array(
|
||||||
'LOG_APPROVE_TOPIC' => '<strong>Approved topic</strong><br />» %s',
|
'LOG_APPROVE_TOPIC' => '<strong>Approved topic</strong><br />» %s',
|
||||||
'LOG_BUMP_TOPIC' => '<strong>User bumped topic</strong><br />» %s',
|
'LOG_BUMP_TOPIC' => '<strong>User bumped topic</strong><br />» %s',
|
||||||
'LOG_DELETE_POST' => '<strong>Deleted post</strong><br />» %s',
|
'LOG_DELETE_POST' => '<strong>Deleted post</strong><br />» %s',
|
||||||
|
'LOG_DELETE_SHADOW_TOPIC' => '<strong>Deleted shadow topic</strong><br />» %s',
|
||||||
'LOG_DELETE_TOPIC' => '<strong>Deleted topic</strong><br />» %s',
|
'LOG_DELETE_TOPIC' => '<strong>Deleted topic</strong><br />» %s',
|
||||||
'LOG_FORK' => '<strong>Copied topic</strong><br />» from %s',
|
'LOG_FORK' => '<strong>Copied topic</strong><br />» from %s',
|
||||||
'LOG_LOCK' => '<strong>Locked topic</strong><br />» %s',
|
'LOG_LOCK' => '<strong>Locked topic</strong><br />» %s',
|
||||||
|
@ -489,7 +490,6 @@ $lang = array_merge($lang, array(
|
||||||
'LOG_SPLIT_DESTINATION' => '<strong>Moved split posts</strong><br />» to %s',
|
'LOG_SPLIT_DESTINATION' => '<strong>Moved split posts</strong><br />» to %s',
|
||||||
'LOG_SPLIT_SOURCE' => '<strong>Split posts</strong><br />» from %s',
|
'LOG_SPLIT_SOURCE' => '<strong>Split posts</strong><br />» from %s',
|
||||||
|
|
||||||
'LOG_TOPIC_DELETED' => '<strong>Deleted topic</strong><br />» %s',
|
|
||||||
'LOG_TOPIC_APPROVED' => '<strong>Approved topic</strong><br />» %s',
|
'LOG_TOPIC_APPROVED' => '<strong>Approved topic</strong><br />» %s',
|
||||||
'LOG_TOPIC_DISAPPROVED' => '<strong>Disapproved topic “%1$s” with the following reason</strong><br />%2$s',
|
'LOG_TOPIC_DISAPPROVED' => '<strong>Disapproved topic “%1$s” with the following reason</strong><br />%2$s',
|
||||||
'LOG_TOPIC_RESYNC' => '<strong>Resynchronised topic counters</strong><br />» %s',
|
'LOG_TOPIC_RESYNC' => '<strong>Resynchronised topic counters</strong><br />» %s',
|
||||||
|
@ -689,4 +689,9 @@ $lang = array_merge($lang, array(
|
||||||
'LOG_WORD_EDIT' => '<strong>Edited word censor</strong><br />» %s',
|
'LOG_WORD_EDIT' => '<strong>Edited word censor</strong><br />» %s',
|
||||||
));
|
));
|
||||||
|
|
||||||
|
// Two language keys with the same text were used in different locations
|
||||||
|
// LOG_DELETE_TOPIC is the correct one, this line is here so that existing
|
||||||
|
// log entries are not broken. Ensure it is included in your language file.
|
||||||
|
$lang['LOG_TOPIC_DELETED'] = $lang['LOG_DELETE_TOPIC'];
|
||||||
|
|
||||||
?>
|
?>
|
|
@ -276,7 +276,7 @@ $lang = array_merge($lang, array(
|
||||||
|
|
||||||
'JABBER' => 'Jabber',
|
'JABBER' => 'Jabber',
|
||||||
'JOINED' => 'Joined',
|
'JOINED' => 'Joined',
|
||||||
'JUMP_PAGE' => 'Enter the page number you wish to go to.',
|
'JUMP_PAGE' => 'Enter the page number you wish to go to',
|
||||||
'JUMP_TO' => 'Jump to',
|
'JUMP_TO' => 'Jump to',
|
||||||
'JUMP_TO_PAGE' => 'Click to jump to page…',
|
'JUMP_TO_PAGE' => 'Click to jump to page…',
|
||||||
|
|
||||||
|
|
|
@ -346,6 +346,7 @@ $lang = array_merge($lang, array(
|
||||||
'USER_WARNING_ADDED' => 'User warned successfully.',
|
'USER_WARNING_ADDED' => 'User warned successfully.',
|
||||||
|
|
||||||
'VIEW_DETAILS' => 'View details',
|
'VIEW_DETAILS' => 'View details',
|
||||||
|
'VIEW_POST' => 'View post',
|
||||||
|
|
||||||
'WARNED_USERS' => 'Warned users',
|
'WARNED_USERS' => 'Warned users',
|
||||||
'WARNED_USERS_EXPLAIN' => 'This is a list of users with unexpired warnings issued to them.',
|
'WARNED_USERS_EXPLAIN' => 'This is a list of users with unexpired warnings issued to them.',
|
||||||
|
|
|
@ -50,7 +50,7 @@
|
||||||
</ul>
|
</ul>
|
||||||
<!-- ENDIF -->
|
<!-- ENDIF -->
|
||||||
|
|
||||||
<h3>{POST_SUBJECT}</h3>
|
<h3><a href="{U_VIEW_POST}">{POST_SUBJECT}</a></h3>
|
||||||
<p class="author">{MINI_POST_IMG} {L_POSTED} {L_POST_BY_AUTHOR} {POST_AUTHOR_FULL} {L_POSTED_ON_DATE} {POST_DATE}</p>
|
<p class="author">{MINI_POST_IMG} {L_POSTED} {L_POST_BY_AUTHOR} {POST_AUTHOR_FULL} {L_POSTED_ON_DATE} {POST_DATE}</p>
|
||||||
|
|
||||||
<!-- IF S_POST_UNAPPROVED -->
|
<!-- IF S_POST_UNAPPROVED -->
|
||||||
|
@ -152,7 +152,7 @@
|
||||||
<div class="panel">
|
<div class="panel">
|
||||||
<div class="inner"><span class="corners-top"><span></span></span>
|
<div class="inner"><span class="corners-top"><span></span></span>
|
||||||
|
|
||||||
<p><!-- IF S_MCP_QUEUE -->{RETURN_QUEUE} | {RETURN_TOPIC_SIMPLE} | {RETURN_POST}<!-- ELSEIF S_MCP_REPORT -->{RETURN_REPORTS} | <a href="{U_VIEW_TOPIC}">{L_VIEW_TOPIC}</a><!-- ELSE -->{RETURN_TOPIC}<!-- ENDIF --></p>
|
<p><!-- IF S_MCP_QUEUE -->{RETURN_QUEUE} | {RETURN_TOPIC_SIMPLE} | {RETURN_POST}<!-- ELSEIF S_MCP_REPORT -->{RETURN_REPORTS} | <a href="{U_VIEW_POST}">{L_VIEW_POST}</a> | <a href="{U_VIEW_TOPIC}">{L_VIEW_TOPIC}</a> | <a href="{U_VIEW_FORUM}">{L_VIEW_FORUM}</a><!-- ELSE -->{RETURN_TOPIC}<!-- ENDIF --></p>
|
||||||
|
|
||||||
<span class="corners-bottom"><span></span></span></div>
|
<span class="corners-bottom"><span></span></span></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -10,18 +10,16 @@
|
||||||
<div class="inner"><span class="corners-top"><span></span></span>
|
<div class="inner"><span class="corners-top"><span></span></span>
|
||||||
|
|
||||||
<div class="postbody" id="pr{history_row.MSG_ID}">
|
<div class="postbody" id="pr{history_row.MSG_ID}">
|
||||||
<!-- IF history_row.U_QUOTE -->
|
<!-- IF history_row.U_QUOTE or history_row.MESSAGE_AUTHOR_QUOTE -->
|
||||||
<ul class="profile-icons">
|
<ul class="profile-icons">
|
||||||
<li class="quote-icon"><a href="{history_row.U_QUOTE}" title="{L_QUOTE} {history_row.MESSAGE_AUTHOR}"><span>{L_QUOTE} {history_row.MESSAGE_AUTHOR}</span></a></li>
|
<li class="quote-icon"><a <!-- IF history_row.U_QUOTE -->href="{history_row.U_QUOTE}"<!-- ELSE -->href="#postingbox" onclick="addquote({history_row.MSG_ID}, '{history_row.MESSAGE_AUTHOR_QUOTE}');"<!-- ENDIF -->" title="{L_QUOTE} {history_row.MESSAGE_AUTHOR}"><span>{L_QUOTE} {history_row.MESSAGE_AUTHOR}</span></a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<!-- ENDIF -->
|
<!-- ENDIF -->
|
||||||
|
|
||||||
<h3><a href="{history_row.U_VIEW_MESSAGE}" <!-- IF history_row.S_CURRENT_MSG -->class="current"<!-- ENDIF -->>{history_row.SUBJECT}</a></h3>
|
<h3><a href="{history_row.U_VIEW_MESSAGE}" <!-- IF history_row.S_CURRENT_MSG -->class="current"<!-- ENDIF -->>{history_row.SUBJECT}</a></h3>
|
||||||
<p class="author<!-- IF history_row.S_CURRENT_MSG --> current<!-- ENDIF -->">{history_row.MINI_POST_IMG} {L_SENT_AT}: <strong>{history_row.SENT_DATE}</strong><br />
|
<p class="author<!-- IF history_row.S_CURRENT_MSG --> current<!-- ENDIF -->">{history_row.MINI_POST_IMG} {L_SENT_AT}: <strong>{history_row.SENT_DATE}</strong><br />
|
||||||
{L_MESSAGE_BY_AUTHOR} {history_row.MESSAGE_AUTHOR_FULL}</p>
|
{L_MESSAGE_BY_AUTHOR} {history_row.MESSAGE_AUTHOR_FULL}</p>
|
||||||
<div class="content<!-- IF history_row.S_CURRENT_MSG --> current<!-- ENDIF -->" id="message_{history_row.MSG_ID}">
|
<div class="content<!-- IF history_row.S_CURRENT_MSG --> current<!-- ENDIF -->" id="message_{history_row.MSG_ID}">{history_row.MESSAGE}</div>
|
||||||
{history_row.MESSAGE}
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<span class="corners-bottom"><span></span></span></div>
|
<span class="corners-bottom"><span></span></span></div>
|
||||||
|
|
|
@ -46,7 +46,7 @@
|
||||||
<th colspan="2" align="center">{L_POST_DETAILS}</th>
|
<th colspan="2" align="center">{L_POST_DETAILS}</th>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="row3" colspan="2" align="center"><span class="gensmall"><!-- IF S_MCP_QUEUE -->{RETURN_QUEUE} | {RETURN_TOPIC_SIMPLE} | {RETURN_POST}<!-- ELSEIF S_MCP_REPORT -->{RETURN_REPORTS} | <a href="{U_VIEW_TOPIC}">{L_VIEW_TOPIC}</a><!-- ELSE -->{RETURN_TOPIC}<!-- ENDIF --></span></td>
|
<td class="row3" colspan="2" align="center"><span class="gensmall"><!-- IF S_MCP_QUEUE -->{RETURN_QUEUE} | {RETURN_TOPIC_SIMPLE} | {RETURN_POST}<!-- ELSEIF S_MCP_REPORT -->{RETURN_REPORTS} | <a href="{U_VIEW_POST}">{L_VIEW_POST}</a> | <a href="{U_VIEW_TOPIC}">{L_VIEW_TOPIC}</a> | <a href="{U_VIEW_FORUM}">{L_VIEW_FORUM}</a><!-- ELSE -->{RETURN_TOPIC}<!-- ENDIF --></span></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="row1"><b class="gen">{L_POST_SUBJECT}: </b></td>
|
<td class="row1"><b class="gen">{L_POST_SUBJECT}: </b></td>
|
||||||
|
|
|
@ -32,7 +32,7 @@
|
||||||
<td valign="top">
|
<td valign="top">
|
||||||
<table width="100%" cellspacing="0" cellpadding="2">
|
<table width="100%" cellspacing="0" cellpadding="2">
|
||||||
<tr>
|
<tr>
|
||||||
<td><div id="message_{history_row.MSG_ID}"><div class="postbody">{history_row.MESSAGE}</div></div></td>
|
<td><div class="postbody" id="message_{history_row.MSG_ID}">{history_row.MESSAGE}</div></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</td>
|
</td>
|
||||||
|
@ -54,7 +54,7 @@
|
||||||
|
|
||||||
<!-- IF history_row.S_ROW_COUNT is even --><tr class="row1"><!-- ELSE --><tr class="row2"><!-- ENDIF -->
|
<!-- IF history_row.S_ROW_COUNT is even --><tr class="row1"><!-- ELSE --><tr class="row2"><!-- ENDIF -->
|
||||||
<td class="gensmall"><a href="{history_row.U_VIEW_MESSAGE}">{L_VIEW_PM}</a></td>
|
<td class="gensmall"><a href="{history_row.U_VIEW_MESSAGE}">{L_VIEW_PM}</a></td>
|
||||||
<td><div class="gensmall" style="float: {S_CONTENT_FLOW_BEGIN};"> <!-- IF history_row.U_PROFILE --><a href="{history_row.U_PROFILE}">{PROFILE_IMG}</a> <!-- ENDIF --> <!-- IF history_row.U_EMAIL --><a href="{history_row.U_EMAIL}">{EMAIL_IMG}</a> <!-- ENDIF --> </div> <div class="gensmall" style="float: {S_CONTENT_FLOW_END};"><!-- IF history_row.U_QUOTE --><a href="{history_row.U_QUOTE}">{QUOTE_IMG}</a> <!-- ENDIF --> <!-- IF history_row.U_POST_REPLY_PM --><a href="{history_row.U_POST_REPLY_PM}">{REPLY_IMG}</a><!-- ENDIF --> </div></td>
|
<td><div class="gensmall" style="float: {S_CONTENT_FLOW_BEGIN};"> <!-- IF history_row.U_PROFILE --><a href="{history_row.U_PROFILE}">{PROFILE_IMG}</a> <!-- ENDIF --> <!-- IF history_row.U_EMAIL --><a href="{history_row.U_EMAIL}">{EMAIL_IMG}</a> <!-- ENDIF --> </div> <div class="gensmall" style="float: {S_CONTENT_FLOW_END};"><!-- IF history_row.U_QUOTE or history_row.MESSAGE_AUTHOR_QUOTE --><a <!-- IF history_row.U_QUOTE -->href="{history_row.U_QUOTE}"<!-- ELSE -->href="#" onclick="addquote({history_row.MSG_ID}, '{history_row.MESSAGE_AUTHOR_QUOTE}'); return false;"<!-- ENDIF -->>{QUOTE_IMG}</a> <!-- ENDIF --> <!-- IF history_row.U_POST_REPLY_PM --><a href="{history_row.U_POST_REPLY_PM}">{REPLY_IMG}</a><!-- ENDIF --> </div></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="spacer" colspan="2"><img src="images/spacer.gif" alt="" width="1" height="1" /></td>
|
<td class="spacer" colspan="2"><img src="images/spacer.gif" alt="" width="1" height="1" /></td>
|
||||||
|
|
Loading…
Add table
Reference in a new issue