- {UNAPPROVED_IMG} {L_POST_UNAPPROVED}
- {REPORTED_IMG}{L_POST_REPORTED}
+ {UNAPPROVED_IMG} {L_POST_UNAPPROVED}
+ {REPORTED_IMG}{L_POST_REPORTED}
|
{postrow.MINI_POST_IMG} |
{L_POSTED}: {postrow.POST_DATE} |
diff --git a/phpBB/styles/subSilver/template/memberlist_view.html b/phpBB/styles/subSilver/template/memberlist_view.html
index f61fc7b0bc..d8885370a0 100644
--- a/phpBB/styles/subSilver/template/memberlist_view.html
+++ b/phpBB/styles/subSilver/template/memberlist_view.html
@@ -16,6 +16,11 @@
+
+
+ {L_USER_IS_INACTIVE} {L_INACTIVE_REASON}: {USER_INACTIVE_REASON}
|
+
+
{USERNAME} [ {L_USER_ADMIN} ] |
diff --git a/phpBB/styles/subSilver/template/posting_body.html b/phpBB/styles/subSilver/template/posting_body.html
index 0cfb2c62cd..a134d60b22 100644
--- a/phpBB/styles/subSilver/template/posting_body.html
+++ b/phpBB/styles/subSilver/template/posting_body.html
@@ -197,8 +197,8 @@ function checkForm()
{S_HIDDEN_ADDRESS_FIELD}
-
- style="color:#{to_recipient.COLOUR}" class="blue">{to_recipient.NAME}
+
+ {to_recipient.NAME}{to_recipient.NAME_FULL}
{L_NO_TO_RECIPIENT}
@@ -208,8 +208,8 @@ function checkForm()
| {L_BCC}: |
-
- style="color:#{bcc_recipient.COLOUR}" class="blue">{bcc_recipient.NAME}
+
+ {bcc_recipient.NAME}{bcc_recipient.NAME_FULL}
{L_NO_BCC_RECIPIENT}
diff --git a/phpBB/styles/subSilver/template/ucp_pm_history.html b/phpBB/styles/subSilver/template/ucp_pm_history.html
index cbfc951f4a..edca9233ba 100644
--- a/phpBB/styles/subSilver/template/ucp_pm_history.html
+++ b/phpBB/styles/subSilver/template/ucp_pm_history.html
@@ -16,7 +16,7 @@
|
- {history_row.AUTHOR_NAME} |
+ {history_row.MESSAGE_AUTHOR_FULL} |
|
diff --git a/phpBB/styles/subSilver/template/ucp_pm_viewfolder.html b/phpBB/styles/subSilver/template/ucp_pm_viewfolder.html
index 62e2a84260..4b65ab225d 100644
--- a/phpBB/styles/subSilver/template/ucp_pm_viewfolder.html
+++ b/phpBB/styles/subSilver/template/ucp_pm_viewfolder.html
@@ -77,7 +77,7 @@
- {messagerow.RECIPIENTS}{messagerow.MESSAGE_AUTHOR} |
+ {messagerow.RECIPIENTS}{messagerow.MESSAGE_AUTHOR_FULL} |
{messagerow.SENT_TIME} |
|
diff --git a/phpBB/styles/subSilver/template/ucp_pm_viewmessage.html b/phpBB/styles/subSilver/template/ucp_pm_viewmessage.html
index 0d29d32283..5d8be4000a 100644
--- a/phpBB/styles/subSilver/template/ucp_pm_viewmessage.html
+++ b/phpBB/styles/subSilver/template/ucp_pm_viewmessage.html
@@ -14,7 +14,7 @@
{L_PM_FROM}: |
- {AUTHOR_NAME}{AUTHOR_NAME} |
+ {MESSAGE_AUTHOR_FULL} |
@@ -27,11 +27,7 @@
{L_TO}: |
-
- style="color:#{to_recipient.COLOUR}" class="blue"{to_recipient.NAME}
-
- style="color:#{to_recipient.COLOUR}" class="blue">{to_recipient.NAME}
-
+ {to_recipient.NAME}{to_recipient.NAME_FULL}
|
@@ -42,11 +38,7 @@
{L_BCC}: |
-
- style="color:#{bcc_recipient.COLOUR}" class="blue"{bcc_recipient.NAME}
-
- style="color:#{bcc_recipient.COLOUR}" class="blue">{bcc_recipient.NAME}
-
+ {bcc_recipient.NAME}{bcc_recipient.NAME_FULL}
|
diff --git a/phpBB/styles/subSilver/template/ucp_pm_viewmessage_print.html b/phpBB/styles/subSilver/template/ucp_pm_viewmessage_print.html
index 44edd2653b..c330e9df2e 100644
--- a/phpBB/styles/subSilver/template/ucp_pm_viewmessage_print.html
+++ b/phpBB/styles/subSilver/template/ucp_pm_viewmessage_print.html
@@ -77,7 +77,7 @@ hr.sep {
{L_PM_FROM}: |
- {AUTHOR_NAME} [ {SENT_DATE} ] |
+ {MESSAGE_AUTHOR} [ {SENT_DATE} ] |
@@ -85,7 +85,7 @@ hr.sep {
{L_TO}: |
- class="blue">{to_recipient.NAME}
+ class="blue">{to_recipient.NAME}
|
@@ -96,7 +96,7 @@ hr.sep {
{L_BCC}: |
- class="blue">{bcc_recipient.NAME}
+ class="blue">{bcc_recipient.NAME}
|
diff --git a/phpBB/viewtopic.php b/phpBB/viewtopic.php
index 91b45cc707..3e01cf733c 100644
--- a/phpBB/viewtopic.php
+++ b/phpBB/viewtopic.php
@@ -1152,7 +1152,7 @@ if (sizeof($attach_list))
FROM ' . ATTACHMENTS_TABLE . '
WHERE ' . $db->sql_in_set('post_msg_id', $attach_list) . '
AND in_message = 0
- ORDER BY filetime ' . ((!$config['display_order']) ? 'DESC' : 'ASC') . ', post_msg_id ASC';
+ ORDER BY filetime DESC, post_msg_id ASC';
$result = $db->sql_query($sql);
while ($row = $db->sql_fetchrow($result))
@@ -1411,10 +1411,10 @@ for ($i = 0, $end = sizeof($post_list); $i < $end; ++$i)
'ONLINE_IMG' => ($poster_id == ANONYMOUS || !$config['load_onlinetrack']) ? '' : (($user_cache[$poster_id]['online']) ? $user->img('icon_user_online', 'ONLINE') : $user->img('icon_user_offline', 'OFFLINE')),
'S_ONLINE' => ($poster_id == ANONYMOUS || !$config['load_onlinetrack']) ? false : (($user_cache[$poster_id]['online']) ? true : false),
- 'U_EDIT' => (($user->data['user_id'] == $poster_id && $auth->acl_get('f_edit', $forum_id) && ($row['post_time'] > time() - ($config['edit_time'] * 60) || !$config['edit_time'])) || $auth->acl_get('m_edit', $forum_id)) ? append_sid("{$phpbb_root_path}posting.$phpEx", "mode=edit&f=$forum_id&p={$row['post_id']}") : '',
+ 'U_EDIT' => (!$user->data['is_registered']) ? '' : ((($user->data['user_id'] == $poster_id && $auth->acl_get('f_edit', $forum_id) && ($row['post_time'] > time() - ($config['edit_time'] * 60) || !$config['edit_time'])) || $auth->acl_get('m_edit', $forum_id)) ? append_sid("{$phpbb_root_path}posting.$phpEx", "mode=edit&f=$forum_id&p={$row['post_id']}") : ''),
'U_QUOTE' => ($auth->acl_get('f_reply', $forum_id)) ? append_sid("{$phpbb_root_path}posting.$phpEx", "mode=quote&f=$forum_id&p={$row['post_id']}") : '',
'U_INFO' => ($auth->acl_get('m_info', $forum_id)) ? append_sid("{$phpbb_root_path}mcp.$phpEx", "i=main&mode=post_details&f=$forum_id&p=" . $row['post_id'], true, $user->session_id) : '',
- 'U_DELETE' => (($user->data['user_id'] == $poster_id && $auth->acl_get('f_delete', $forum_id) && $topic_data['topic_last_post_id'] == $row['post_id'] && ($row['post_time'] > time() - ($config['edit_time'] * 60) || !$config['edit_time'])) || $auth->acl_get('m_delete', $forum_id)) ? append_sid("{$phpbb_root_path}posting.$phpEx", "mode=delete&f=$forum_id&p={$row['post_id']}") : '',
+ 'U_DELETE' => (!$user->data['is_registered']) ? '' : ((($user->data['user_id'] == $poster_id && $auth->acl_get('f_delete', $forum_id) && $topic_data['topic_last_post_id'] == $row['post_id'] && ($row['post_time'] > time() - ($config['edit_time'] * 60) || !$config['edit_time'])) || $auth->acl_get('m_delete', $forum_id)) ? append_sid("{$phpbb_root_path}posting.$phpEx", "mode=delete&f=$forum_id&p={$row['post_id']}") : ''),
'U_PROFILE' => $user_cache[$poster_id]['profile'],
'U_SEARCH' => $user_cache[$poster_id]['search'],
|