diff --git a/phpBB/includes/acp/auth.php b/phpBB/includes/acp/auth.php
index 10f5633f1e..ce6a08bf0b 100644
--- a/phpBB/includes/acp/auth.php
+++ b/phpBB/includes/acp/auth.php
@@ -556,35 +556,9 @@ class auth_admin extends auth
$s_role_options = '' . $s_role_options;
}
- if (!$forum_id)
- {
- $folder_image = '';
- }
- else
- {
- if ($forum_names_ary[$forum_id]['forum_status'] == ITEM_LOCKED)
- {
- $folder_image = '';
- }
- else
- {
- switch ($forum_names_ary[$forum_id]['forum_type'])
- {
- case FORUM_LINK:
- $folder_image = '';
- break;
-
- default:
- $folder_image = ($forum_names_ary[$forum_id]['left_id'] + 1 != $forum_names_ary[$forum_id]['right_id']) ? '' : '';
- break;
- }
- }
- }
-
$template->assign_block_vars($tpl_pmask . '.' . $tpl_fmask, array(
'NAME' => ($forum_id == 0) ? $forum_names_ary[0] : $forum_names_ary[$forum_id]['forum_name'],
'PADDING' => ($forum_id == 0) ? '' : $forum_names_ary[$forum_id]['padding'],
- 'FOLDER_IMAGE' => $folder_image,
'S_ROLE_OPTIONS' => $s_role_options,
'UG_ID' => $ug_id,
'FORUM_ID' => $forum_id)
diff --git a/phpBB/includes/ucp/ucp_pm_compose.php b/phpBB/includes/ucp/ucp_pm_compose.php
index b646594631..3cf3f41225 100644
--- a/phpBB/includes/ucp/ucp_pm_compose.php
+++ b/phpBB/includes/ucp/ucp_pm_compose.php
@@ -651,7 +651,7 @@ function compose_pm($id, $mode, $action)
$message_parser->decode_message($bbcode_uid);
- if (($action == 'quote' || $action == 'quotepost') && !$preview && !$refresh)
+ if (($action == 'quote' || $action == 'quotepost') && !$preview && !$refresh && !$submit)
{
if ($action == 'quotepost')
{
diff --git a/phpBB/language/en/acp/groups.php b/phpBB/language/en/acp/groups.php
index 05cbb9625c..15537d4e09 100644
--- a/phpBB/language/en/acp/groups.php
+++ b/phpBB/language/en/acp/groups.php
@@ -102,14 +102,14 @@ $lang = array_merge($lang, array(
'NO_USERS' => 'You haven’t entered any users.',
'SPECIAL_GROUPS' => 'Predefined groups',
- 'SPECIAL_GROUPS_EXPLAIN' => 'Pre-defined groups are special groups, they cannot be deleted or directly modified. However you can still add users and alter basic settings. By clicking “Default” you can set the relevant group to the default for all its members.',
+ 'SPECIAL_GROUPS_EXPLAIN' => 'Pre-defined groups are special groups, they cannot be deleted or directly modified. However you can still add users and alter basic settings.',
'TOTAL_MEMBERS' => 'Members',
'USERS_APPROVED' => 'Users approved successfully.',
'USER_DEFAULT' => 'User default',
'USER_DEF_GROUPS' => 'User defined groups',
- 'USER_DEF_GROUPS_EXPLAIN' => 'These are groups created by you or another admin on this board. You can manage memberships as well as edit group properties or even delete the group. By clicking “Default” you can set the relevant group to the default for all its members.',
+ 'USER_DEF_GROUPS_EXPLAIN' => 'These are groups created by you or another admin on this board. You can manage memberships as well as edit group properties or even delete the group.',
'USER_GROUP_DEFAULT' => 'Set as default group',
'USER_GROUP_DEFAULT_EXPLAIN' => 'Saying yes here will set this group as the default group for the added users',
'USER_GROUP_LEADER' => 'Set as group leader',
diff --git a/phpBB/language/en/acp/permissions.php b/phpBB/language/en/acp/permissions.php
index 7880910d7e..a1cea09db7 100644
--- a/phpBB/language/en/acp/permissions.php
+++ b/phpBB/language/en/acp/permissions.php
@@ -43,7 +43,7 @@ $lang = array_merge($lang, array(
Permission Roles
These are used to create different sets of permissions for the different permission types later being able to be assigned on a role-based basis. The default roles should cover the administration of bulletin boards large and small, though within each of the four divisions, you can add/edit/delete roles as you see fit.
-
Permission Mask
+
Permission Masks
These are used to view the effective permissions assigned to Users, Moderators (Local and Global), Administrators or Forums.
diff --git a/phpBB/language/en/mcp.php b/phpBB/language/en/mcp.php
index ebdbeef35c..fe405eb3d0 100644
--- a/phpBB/language/en/mcp.php
+++ b/phpBB/language/en/mcp.php
@@ -32,6 +32,7 @@ if (empty($lang) || !is_array($lang))
$lang = array_merge($lang, array(
'ACTION' => 'Action',
+ 'ACTION_NOTE' => 'Action/Note',
'ADD_FEEDBACK' => 'Add feedback',
'ADD_FEEDBACK_EXPLAIN' => 'If you would like to add a report on this please fill out the following form. Only use plain text; HTML, BBCode, etc. are not permitted.',
'ADD_WARNING' => 'Add warning',
@@ -100,7 +101,7 @@ $lang = array_merge($lang, array(
'LATEST_LOGS' => 'Latest 5 logged actions',
'LATEST_REPORTED' => 'Latest 5 reports',
- 'LATEST_UNAPPROVED' => 'Latest 5 posts awaiting for approval',
+ 'LATEST_UNAPPROVED' => 'Latest 5 posts awaiting approval',
'LATEST_WARNING_TIME' => 'Latest warning issued',
'LATEST_WARNINGS' => 'Latest 5 warnings',
'LEAVE_SHADOW' => 'Leave shadow topic in place',
@@ -278,7 +279,7 @@ $lang = array_merge($lang, array(
'SELECT_ACTION' => 'Select desired action',
'SELECT_FORUM_GLOBAL_ANNOUNCEMENT' => 'Please select the forum you wish this global announcement to be displayed.',
'SELECT_FORUM_GLOBAL_ANNOUNCEMENTS' => 'One or more of the selected topics are global announcements. Please select the forum you wish these to be displayed.',
- 'SELECT_MERGE' => 'Select for merging',
+ 'SELECT_MERGE' => 'Select for merge',
'SELECT_TOPICS_FROM' => 'Select topics from',
'SELECT_TOPIC' => 'Select topic',
'SELECT_USER' => 'Select user',
diff --git a/phpBB/language/en/ucp.php b/phpBB/language/en/ucp.php
index 4d2a13f7d1..9834210feb 100644
--- a/phpBB/language/en/ucp.php
+++ b/phpBB/language/en/ucp.php
@@ -83,6 +83,7 @@ $lang = array_merge($lang, array(
'ATTACHMENT_DELETED' => 'Attachment successfully deleted.',
'AVATAR_CATEGORY' => 'Category',
'AVATAR_EXPLAIN' => 'Maximum dimensions; width %1$d pixels, height %2$d pixels, filesize %3$dkB.',
+ 'AVATAR_FEATURES_DISABLED' => 'The avatar functionality is currently disabled.',
'AVATAR_GALLERY' => 'Local gallery',
'AVATAR_GENERAL_UPLOAD_ERROR' => 'Could not upload avatar to %s',
'AVATAR_PAGE' => 'Page',
@@ -229,7 +230,7 @@ $lang = array_merge($lang, array(
'LOGIN_REDIRECT' => 'You have been successfully logged in.',
'LOGOUT_REDIRECT' => 'You have been successfully logged out.',
- 'MARK_IMPORTANT' => 'Mark as important',
+ 'MARK_IMPORTANT' => 'Mark/Unmark as important',
'MARKED_MESSAGE' => 'Marked message',
'MAX_FOLDER_REACHED' => 'Maximum number of allowed user defined folders reached',
'MESSAGE_BY_AUTHOR' => 'by',
diff --git a/phpBB/report.php b/phpBB/report.php
index a7bcf58cc9..d0584b9d63 100644
--- a/phpBB/report.php
+++ b/phpBB/report.php
@@ -26,8 +26,8 @@ $forum_id = request_var('f', 0);
$post_id = request_var('p', 0);
$reason_id = request_var('reason_id', 0);
$report_text = utf8_normalize_nfc(request_var('report_text', '', true));
+$user_notify = ($user->data['is_registered']) ? request_var('notify', 0) : false;
-$user_notify = (isset($_POST['notify']) && $user->data['is_registered']) ? true : false;
$submit = (isset($_POST['submit'])) ? true : false;
if (!$post_id)
diff --git a/phpBB/styles/prosilver/template/attachment.html b/phpBB/styles/prosilver/template/attachment.html
index 1bb23b8eac..de46720baf 100644
--- a/phpBB/styles/prosilver/template/attachment.html
+++ b/phpBB/styles/prosilver/template/attachment.html
@@ -7,25 +7,23 @@