diff options
-rw-r--r-- | mod/logbrowser/index.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mod/logbrowser/index.php b/mod/logbrowser/index.php index 1cb6fb848..e23d1cef3 100644 --- a/mod/logbrowser/index.php +++ b/mod/logbrowser/index.php @@ -19,6 +19,8 @@ $limit = get_input('limit', 10); $offset = get_input('offset'); + $title = elgg_echo("logbrowser"); + // Get log entries $log = get_system_log("", "","",$limit, $offset); $count = get_system_log("", "","",$limit, $offset, true); @@ -35,7 +37,7 @@ $result = elgg_view_entity_list($log_entries, $count, $offset, $limit, false); // Display main admin menu - page_draw(elgg_echo("logbrowser"),elgg_view_layout("one_column", $result)); + page_draw($title,elgg_view_layout("one_column", elgg_view_title($title).$result)); set_context($context); ?>
\ No newline at end of file |