diff options
Diffstat (limited to 'phpBB/includes/functions.php')
-rw-r--r-- | phpBB/includes/functions.php | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index 34eedaf9bf..40b7756daa 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -741,7 +741,7 @@ function language_select($default, $select_name, $dirname="language/") // NOTE: This function should check is_dir($file), however the is_dir function seems to be buggy on my // system so its not currently implemented that way // - James -function template_select($default, $select_name, $dirname = "templates") +function template_select($default, $select_name = 'template', $dirname = "templates") { $dir = opendir($dirname); @@ -766,7 +766,7 @@ function template_select($default, $select_name, $dirname = "templates") return($template_select); } -function theme_select($default, $select_name) +function theme_select($default, $select_name = 'theme') { global $db, $board_config, $lang; @@ -807,7 +807,8 @@ function theme_select($default, $select_name) } return($theme_select); } -function tz_select($default, $select_name) + +function tz_select($default, $select_name = 'timezone') { global $sys_timezone; @@ -942,4 +943,4 @@ function obtain_word_list(&$orig_word, &$replacement_word) return(TRUE); } -?>
\ No newline at end of file +?> |