diff --git a/phpBB/styles/prosilver/theme/bidi.css b/phpBB/styles/prosilver/theme/bidi.css
index 623ecc1226..17c0baf006 100644
--- a/phpBB/styles/prosilver/theme/bidi.css
+++ b/phpBB/styles/prosilver/theme/bidi.css
@@ -128,14 +128,26 @@
.rtl dl.details dt {
float: right;
+ clear: right;
text-align: left;
}
.rtl dl.details dd {
- margin-right: 16em;
+ margin-right: 0;
margin-left: 0;
padding-right: 5px;
padding-left: 0;
+ float: right;
+}
+
+*:first-child+html dl.details dd {
+ margin-right: 16em;
+ float: none;
+}
+
+* html dl.details dd {
+ margin-right: 16em;
+ float: none;
}
/* Pagination
diff --git a/phpBB/styles/prosilver/theme/colours.css b/phpBB/styles/prosilver/theme/colours.css
index ba089c7ce6..cda2ed9d07 100644
--- a/phpBB/styles/prosilver/theme/colours.css
+++ b/phpBB/styles/prosilver/theme/colours.css
@@ -442,12 +442,6 @@ dl.faq dt {
color: #BC2A4D;
}
-.announce, .unreadpost {
- /* Highlight the announcements & unread posts box */
- border-left-color: #BC2A4D;
- border-right-color: #BC2A4D;
-}
-
/* Post signature */
.signature {
border-top-color: #CCCCCC;
diff --git a/phpBB/styles/prosilver/theme/common.css b/phpBB/styles/prosilver/theme/common.css
index e46bbba836..9ba258b7df 100644
--- a/phpBB/styles/prosilver/theme/common.css
+++ b/phpBB/styles/prosilver/theme/common.css
@@ -444,6 +444,7 @@ dl.details {
dl.details dt {
float: left;
+ clear: left;
width: 16em;
text-align: right;
color: #000000;
@@ -451,10 +452,11 @@ dl.details dt {
}
dl.details dd {
- margin-left: 16em;
+ margin-left: 0;
padding-left: 5px;
margin-bottom: 5px;
color: #828282;
+ float: left;
}
/* Pagination
diff --git a/phpBB/styles/prosilver/theme/tweaks.css b/phpBB/styles/prosilver/theme/tweaks.css
index 52bdb1baaa..cfbb680997 100644
--- a/phpBB/styles/prosilver/theme/tweaks.css
+++ b/phpBB/styles/prosilver/theme/tweaks.css
@@ -59,3 +59,14 @@ dl.icon {
margin-right: 35px;
}
+/* Correctly clear floating for details on profile view */
+*:first-child+html dl.details dd {
+ margin-left: 16em;
+ float: none;
+}
+
+* html dl.details dd {
+ margin-left: 16em;
+ float: none;
+}
+
diff --git a/phpBB/styles/subsilver2/template/posting_body.html b/phpBB/styles/subsilver2/template/posting_body.html
index c0870da8f6..ba4df7da89 100644
--- a/phpBB/styles/subsilver2/template/posting_body.html
+++ b/phpBB/styles/subsilver2/template/posting_body.html
@@ -391,6 +391,7 @@
+
diff --git a/phpBB/styles/subsilver2/template/ucp_pm_history.html b/phpBB/styles/subsilver2/template/ucp_pm_history.html
index 1bcd042d03..9e05368340 100644
--- a/phpBB/styles/subsilver2/template/ucp_pm_history.html
+++ b/phpBB/styles/subsilver2/template/ucp_pm_history.html
@@ -1,7 +1,7 @@
- {L_MESSAGE_HISTORY} - {TITLE} |
+ {L_MESSAGE_HISTORY} - {HISTORY_TITLE} |
diff --git a/phpBB/viewforum.php b/phpBB/viewforum.php
index dc56afc7d6..db6b1118e3 100644
--- a/phpBB/viewforum.php
+++ b/phpBB/viewforum.php
@@ -291,6 +291,7 @@ $template->assign_vars(array(
'S_DISPLAY_SEARCHBOX' => ($auth->acl_get('u_search') && $auth->acl_get('f_search', $forum_id) && $config['load_search']) ? true : false,
'S_SEARCHBOX_ACTION' => append_sid("{$phpbb_root_path}search.$phpEx", 'fid[]=' . $forum_id),
'S_SINGLE_MODERATOR' => (!empty($moderators[$forum_id]) && sizeof($moderators[$forum_id]) > 1) ? false : true,
+ 'S_IS_LOCKED' => ($forum_data['forum_status'] == ITEM_LOCKED) ? true : false,
'U_MCP' => ($auth->acl_get('m_', $forum_id)) ? append_sid("{$phpbb_root_path}mcp.$phpEx", "f=$forum_id&i=main&mode=forum_view", true, $user->session_id) : '',
'U_POST_NEW_TOPIC' => ($auth->acl_get('f_post', $forum_id) || $user->data['user_id'] == ANONYMOUS) ? append_sid("{$phpbb_root_path}posting.$phpEx", 'mode=post&f=' . $forum_id) : '',
|