mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 12:28:52 +00:00
guess what ? yes... fixed small glitches.
git-svn-id: file:///svn/phpbb/branches/phpBB-2_0_0@3822 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
6d81936276
commit
babd5e67c5
4 changed files with 6 additions and 4 deletions
|
@ -662,7 +662,7 @@ if ( $mode == 'edit' || $mode == 'save' && ( isset($HTTP_POST_VARS['username'])
|
||||||
{
|
{
|
||||||
$sql = "UPDATE " . GROUPS_TABLE . "
|
$sql = "UPDATE " . GROUPS_TABLE . "
|
||||||
SET group_name = '".str_replace("\'", "''", $rename_user)."'
|
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) )
|
if( !$result = $db->sql_query($sql) )
|
||||||
{
|
{
|
||||||
message_die(GENERAL_ERROR, 'Could not rename users group', '', __LINE__, __FILE__, $sql);
|
message_die(GENERAL_ERROR, 'Could not rename users group', '', __LINE__, __FILE__, $sql);
|
||||||
|
|
|
@ -107,6 +107,8 @@ p,ul,td {font-size:10pt;}
|
||||||
<li>Changed split words handling - now foreign characters are indexed correctly, searching for them works too</li>
|
<li>Changed split words handling - now foreign characters are indexed correctly, searching for them works too</li>
|
||||||
<li>Changed empty email To Field to use a non-disclosure delimiter - Anti-Spam software should handle those mails correctly, they are RFC compliant</li>
|
<li>Changed empty email To Field to use a non-disclosure delimiter - Anti-Spam software should handle those mails correctly, they are RFC compliant</li>
|
||||||
<li>Fixed wrong language var in install.php - FTP Config screen</li>
|
<li>Fixed wrong language var in install.php - FTP Config screen</li>
|
||||||
|
<li>Fixed alt tag for locked topic images in viewforum_body.tpl</li>
|
||||||
|
<li>Fixed typo in groupcp.php - $lang['Unsub_success'] instead of $lang['Usub_success']</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<a name="203"></a><h3 class="h3">1.ii. Changes since 2.0.3</h3>
|
<a name="203"></a><h3 class="h3">1.ii. Changes since 2.0.3</h3>
|
||||||
|
|
|
@ -352,7 +352,7 @@ else if ( isset($HTTP_POST_VARS['unsub']) || isset($HTTP_POST_VARS['unsubpending
|
||||||
'META' => '<meta http-equiv="refresh" content="3;url=' . append_sid("index.$phpEx") . '">')
|
'META' => '<meta http-equiv="refresh" content="3;url=' . append_sid("index.$phpEx") . '">')
|
||||||
);
|
);
|
||||||
|
|
||||||
$message = $lang['Usub_success'] . '<br /><br />' . sprintf($lang['Click_return_group'], '<a href="' . append_sid("groupcp.$phpEx?" . POST_GROUPS_URL . "=$group_id") . '">', '</a>') . '<br /><br />' . sprintf($lang['Click_return_index'], '<a href="' . append_sid("index.$phpEx") . '">', '</a>');
|
$message = $lang['Unsub_success'] . '<br /><br />' . sprintf($lang['Click_return_group'], '<a href="' . append_sid("groupcp.$phpEx?" . POST_GROUPS_URL . "=$group_id") . '">', '</a>') . '<br /><br />' . sprintf($lang['Click_return_index'], '<a href="' . append_sid("index.$phpEx") . '">', '</a>');
|
||||||
|
|
||||||
message_die(GENERAL_MESSAGE, $message);
|
message_die(GENERAL_MESSAGE, $message);
|
||||||
}
|
}
|
||||||
|
|
|
@ -86,10 +86,10 @@
|
||||||
<td class="gensmall">{L_STICKY}</td>
|
<td class="gensmall">{L_STICKY}</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="gensmall"><img src="{FOLDER_LOCKED_NEW_IMG}" alt="{L_NEW_POSTS_TOPIC_LOCKED}" width="19" height="18" /></td>
|
<td class="gensmall"><img src="{FOLDER_LOCKED_NEW_IMG}" alt="{L_NEW_POSTS_LOCKED}" width="19" height="18" /></td>
|
||||||
<td class="gensmall">{L_NEW_POSTS_LOCKED}</td>
|
<td class="gensmall">{L_NEW_POSTS_LOCKED}</td>
|
||||||
<td> </td>
|
<td> </td>
|
||||||
<td class="gensmall"><img src="{FOLDER_LOCKED_IMG}" alt="{L_NO_NEW_POSTS_TOPIC_LOCKED}" width="19" height="18" /></td>
|
<td class="gensmall"><img src="{FOLDER_LOCKED_IMG}" alt="{L_NO_NEW_POSTS_LOCKED}" width="19" height="18" /></td>
|
||||||
<td class="gensmall">{L_NO_NEW_POSTS_LOCKED}</td>
|
<td class="gensmall">{L_NO_NEW_POSTS_LOCKED}</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table></td>
|
</table></td>
|
||||||
|
|
Loading…
Add table
Reference in a new issue