diff --git a/phpBB/admin/admin_users.php b/phpBB/admin/admin_users.php
index 0cdd92a5a6..5b581d1d35 100644
--- a/phpBB/admin/admin_users.php
+++ b/phpBB/admin/admin_users.php
@@ -662,7 +662,7 @@ if ( $mode == 'edit' || $mode == 'save' && ( isset($HTTP_POST_VARS['username'])
{
$sql = "UPDATE " . GROUPS_TABLE . "
SET group_name = '".str_replace("\'", "''", $rename_user)."'
- WHERE group_name = '".str_replace("\'", "''", $this_userdata['username'] )."'";
+ WHERE group_name = '".str_replace("'", "''", $this_userdata['username'] )."'";
if( !$result = $db->sql_query($sql) )
{
message_die(GENERAL_ERROR, 'Could not rename users group', '', __LINE__, __FILE__, $sql);
diff --git a/phpBB/docs/CHANGELOG.html b/phpBB/docs/CHANGELOG.html
index 177c0a1699..18ddfe0585 100644
--- a/phpBB/docs/CHANGELOG.html
+++ b/phpBB/docs/CHANGELOG.html
@@ -107,6 +107,8 @@ p,ul,td {font-size:10pt;}
Changed split words handling - now foreign characters are indexed correctly, searching for them works too
Changed empty email To Field to use a non-disclosure delimiter - Anti-Spam software should handle those mails correctly, they are RFC compliant
Fixed wrong language var in install.php - FTP Config screen
+Fixed alt tag for locked topic images in viewforum_body.tpl
+Fixed typo in groupcp.php - $lang['Unsub_success'] instead of $lang['Usub_success']
1.ii. Changes since 2.0.3
diff --git a/phpBB/groupcp.php b/phpBB/groupcp.php
index 8f6672cc83..02834c8a03 100644
--- a/phpBB/groupcp.php
+++ b/phpBB/groupcp.php
@@ -352,7 +352,7 @@ else if ( isset($HTTP_POST_VARS['unsub']) || isset($HTTP_POST_VARS['unsubpending
'META' => '')
);
- $message = $lang['Usub_success'] . '
' . sprintf($lang['Click_return_group'], '', '') . '
' . sprintf($lang['Click_return_index'], '', '');
+ $message = $lang['Unsub_success'] . '
' . sprintf($lang['Click_return_group'], '', '') . '
' . sprintf($lang['Click_return_index'], '', '');
message_die(GENERAL_MESSAGE, $message);
}
diff --git a/phpBB/templates/subSilver/viewforum_body.tpl b/phpBB/templates/subSilver/viewforum_body.tpl
index df8ecfd0ad..3c2a067d4c 100644
--- a/phpBB/templates/subSilver/viewforum_body.tpl
+++ b/phpBB/templates/subSilver/viewforum_body.tpl
@@ -86,10 +86,10 @@
{L_STICKY} |
-  |
+  |
{L_NEW_POSTS_LOCKED} |
|
-  |
+  |
{L_NO_NEW_POSTS_LOCKED} |