diff options
Diffstat (limited to 'mod/help.php')
-rw-r--r-- | mod/help.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/help.php b/mod/help.php index bbfeb9a6c..484104124 100644 --- a/mod/help.php +++ b/mod/help.php @@ -46,7 +46,7 @@ function help_content(&$a) { $text = load_doc_file('doc/' . $a->argv[1] . '.bb'); if($text) $doctype = 'bbcode'; - $a->page['title'] = t('Help:') . ' ' . str_replace('-',' ',notags(argv(1))); + $a->page['title'] = t('Help:') . ' ' . str_replace('_',' ',ucfirst(notags(argv(1)))); } if(! $text) { $text = load_doc_file('doc/' . $a->argv[1] . '.html'); |