summaryrefslogtreecommitdiff
path: root/core/helpers
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2008-12-20 01:20:19 +0000
committerBharat Mediratta <bharat@menalto.com>2008-12-20 01:20:19 +0000
commit9afd9d05ae71a097488bea88cf87d98405881aa7 (patch)
treec33905a799ab661ace6f4cb437e31688ee732682 /core/helpers
parent16a3e43b45c654e0e882810234a39ea518a70879 (diff)
Move log entries into its own block
Diffstat (limited to 'core/helpers')
-rw-r--r--core/helpers/core_block.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/core/helpers/core_block.php b/core/helpers/core_block.php
index 41fb2790..571453a0 100644
--- a/core/helpers/core_block.php
+++ b/core/helpers/core_block.php
@@ -49,6 +49,12 @@ class core_block_Core {
$block->content = new View("admin_block_photo_stream.html");
$blocks[] = $block;
+ $block = new Block();
+ $block->id = "gLogEntries";
+ $block->title = _("Log Entries");
+ $block->content = new View("admin_block_log_entries.html");
+ $blocks[] = $block;
+
return implode("\n", $blocks);
}