summaryrefslogtreecommitdiff
path: root/core/helpers
diff options
context:
space:
mode:
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);
}