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);
}
diff --git a/core/views/admin_block_log_entries.html.php b/core/views/admin_block_log_entries.html.php
new file mode 100644
index 00000000..b2ec8e91
--- /dev/null
+++ b/core/views/admin_block_log_entries.html.php
@@ -0,0 +1,20 @@
+ defined("SYSPATH") or die("No direct script access."); ?>
+
+ -
+ hacker 2008-12-10 23:02:23 Something happened
+
+ -
+ username 2008-12-10 23:02:23 Someone logged in
+
+ -
+ username 2008-12-10 23:02:23 New module installed
+
+ -
+ username 2008-12-10 23:02:23 Someone logged in
+
+ -
+ username 2008-12-10 23:02:23 RSS feed updated
+
+
+
+
diff --git a/core/views/admin_dashboard.html.php b/core/views/admin_dashboard.html.php
index 78c92526..91a6ce36 100644
--- a/core/views/admin_dashboard.html.php
+++ b/core/views/admin_dashboard.html.php
@@ -1,17 +1,6 @@
defined("SYSPATH") or die("No direct script access."); ?>
= $theme->dashboard_blocks(); ?>
-
-
Recent Comments
-
- - hacker 2008-12-10 23:02:23 Something happened
- - username 2008-12-10 23:02:23 Someone logged in
- - username 2008-12-10 23:02:23 New module installed
- - username 2008-12-10 23:02:23 Someone logged in
- - username 2008-12-10 23:02:23 RSS feed updated
-
-
-