mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-10 13:28:55 +00:00
More fixes
git-svn-id: file:///svn/phpbb/branches/phpBB-2_0_0@3121 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
2bb3912a6c
commit
4668b1090c
2 changed files with 15 additions and 1 deletions
|
@ -94,6 +94,16 @@ h3 {font-size:12pt;color:blue}
|
|||
<li>Fixed session not setting userdata['user_id'] to ANON as appropriate</li>
|
||||
<li>Added check for non-empty name in disallow admin</li>
|
||||
<li>Fixed validation of SSL website addresses in profile</li>
|
||||
<li>Fixed inability of admins to upload avatars via user admin panel</li>
|
||||
<li>Fixed non-deletion of private message text upon full box overwrite</li>
|
||||
<li>Fixed incorrect error message in smiley admin</li>
|
||||
<li>Fixed incorrect alt-text for "Stop Watching Topic" image</li>
|
||||
<li>Temporary fix for missing lang strings in forum admin - translators should update their packages if not done already</li>
|
||||
<li>Use selected localisation during later stages of installation</li>
|
||||
<li>Fixed non-check of permissions when deleting a topic via Moderator Control Panel</li>
|
||||
<li>Fixed non-update of banlist upon user deletion</li>
|
||||
<li>Check approved users boxes by default in usergroup approve form</li>
|
||||
<li></li>
|
||||
<li></li>
|
||||
<li></li>
|
||||
</ul>
|
||||
|
|
|
@ -8,7 +8,6 @@
|
|||
*
|
||||
* $Id$
|
||||
*
|
||||
*
|
||||
***************************************************************************/
|
||||
|
||||
/***************************************************************************
|
||||
|
@ -196,6 +195,11 @@ if ( !$is_auth['auth_mod'] )
|
|||
switch( $mode )
|
||||
{
|
||||
case 'delete':
|
||||
if (!$is_auth['auth_delete'])
|
||||
{
|
||||
message_die(MESSAGE, sprintf($lang['Sorry_auth_delete'], $is_auth['auth_delete_type']));
|
||||
}
|
||||
|
||||
$page_title = $lang['Mod_CP'];
|
||||
include($phpbb_root_path . 'includes/page_header.'.$phpEx);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue