mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-11 03:04:09 +02:00
Ok, these are just fixes for a few bugs I saw while digging around all
of the different pages. Everything else looks fine. I dunno if I interrupted something, but admin_board's call to lang_select() and style_select() is inconsistant. lang_select() requires the directory be passed *without* $phpbb_root_dir tacked on, it will add it later. style_select(), however requires that the root directory be added before calling the function. Wierd... git-svn-id: file:///svn/phpbb/branches/phpBB-2_0_0@3152 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -27,7 +27,7 @@ if ( !defined('IN_PHPBB') )
|
||||
|
||||
require($phpbb_root_path . 'includes/functions_search.'.$phpEx);
|
||||
|
||||
function prune($forum_id, $prune_date, $prune_all = false;)
|
||||
function prune($forum_id, $prune_date, $prune_all = false)
|
||||
{
|
||||
global $db, $lang;
|
||||
|
||||
@@ -163,4 +163,4 @@ function auto_prune($forum_id = 0)
|
||||
return;
|
||||
}
|
||||
|
||||
?>
|
||||
?>
|
||||
|
Reference in New Issue
Block a user