1
0
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:
dougk_ff7
2002-11-29 06:58:37 +00:00
parent d37ab45ff3
commit c27b7e010b
3 changed files with 5 additions and 5 deletions

View File

@@ -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;
}
?>
?>