1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-08 15:35:11 +02:00
Meik Sievertsen 945afbc5fa Unused Code inside function update_forum_data [Bug ]
Copy permissions protection for groups [Bug ]
HTML issues in ACP [Bug , ]
Always send the correct encoding [related to bug ]
Mass email fixes for first loop iteration [Bug ]
Extension groups to be allowed in PM's and/or Posts [Bug ]
Extension allowance checking clarified (no longer using forum id 0 for private messaging)
Using request_var() array method for some variables [Bug ]
Added confirmation for deletion of ranks/smilies/icons/word censores [Bug , , , ]
Only show postable forums in dropdown list for moving posts on forum deletion as well as correct re-indexing [Bug , , ]
Jabber password being password field in jabber settings screen [Bug ]
user activity language variable if viewing not own profile [Bug ]
Show moderator group/user-name colour [Bug ]
Log rank creation/updating/removing [Bug ]
Update check permission changed from a_ to a_board [Bug ]


git-svn-id: file:///svn/phpbb/trunk@6816 89ea8834-ac86-4346-8a33-228a782c2dd0
2006-12-27 17:43:55 +00:00

37 lines
562 B
PHP

<?php
/**
*
* @package acp
* @version $Id$
* @copyright (c) 2005 phpBB Group
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
/**
* @package module_install
*/
class acp_update_info
{
function module()
{
return array(
'filename' => 'acp_update',
'title' => 'ACP_UPDATE',
'version' => '1.0.0',
'modes' => array(
'version_check' => array('title' => 'ACP_VERSION_CHECK', 'auth' => 'acl_a_board', 'cat' => array('ACP_AUTOMATION')),
),
);
}
function install()
{
}
function uninstall()
{
}
}
?>