diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-07-31 13:12:57 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-07-31 13:12:57 +0000 |
commit | 11d0d36d3a3ac38e985e414cc50b9075ddc1f413 (patch) | |
tree | cea939173b9a9646fe0d8396389144c89b80cba1 /mod/logbrowser | |
parent | 3dc7b6ff6bbcc7d885214a89d6fb3a5892fdf4b0 (diff) | |
download | elgg-11d0d36d3a3ac38e985e414cc50b9075ddc1f413.tar.gz elgg-11d0d36d3a3ac38e985e414cc50b9075ddc1f413.tar.bz2 |
Title added
git-svn-id: https://code.elgg.org/elgg/trunk@1627 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/logbrowser')
-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 |