diff options
Diffstat (limited to 'modules/help.module')
-rw-r--r-- | modules/help.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/help.module b/modules/help.module index 0f3e6fb32..157b37e0d 100644 --- a/modules/help.module +++ b/modules/help.module @@ -49,8 +49,8 @@ function help_admin() { } } - print "<small>". implode(" · ", $links) ."</small><hr />"; - print $output; + $output = "<small>". implode(" · ", $links) ."</small><hr />". $output; + return $output; } ?> |