From ef51dfab320ac54eb7ce61b94643c036412f48f3 Mon Sep 17 00:00:00 2001 From: Diego Najar Date: Mon, 4 Nov 2013 20:05:26 -0300 Subject: [PATCH] Fixes --- admin/templates/default/css/main.css | 2 +- plugins/hello/plugin.bit | 31 +++++++--------------------- 2 files changed, 8 insertions(+), 25 deletions(-) diff --git a/admin/templates/default/css/main.css b/admin/templates/default/css/main.css index 8877ffdd..0bd2216d 100644 --- a/admin/templates/default/css/main.css +++ b/admin/templates/default/css/main.css @@ -281,7 +281,7 @@ div.dashboard_box a.comment_spam { border-left: 4px solid #D72020 !important; } -div.dashboard_box a.comment_unapprove { +div.dashboard_box a.comment_unapproved { border-left: 4px solid #F1CC19 !important; } diff --git a/plugins/hello/plugin.bit b/plugins/hello/plugin.bit index a356cbbc..9e2bbc6c 100644 --- a/plugins/hello/plugin.bit +++ b/plugins/hello/plugin.bit @@ -1,36 +1,19 @@ 'Diego Najar', - 'version'=>'3.6', - 'url'=>'http://www.nibbleblog.com' + 'author'=>'My name or nickname', + 'version'=>'1.0', + 'url'=>'http://www.mysite.com' ); -// ===================================================================== -// PLUGIN CLASS -// ===================================================================== -class PLUGIN_CATEGORIES extends Plugin +class PLUGIN_HELLO extends Plugin { public function blog_body() { - global $categories; - - $html = ''; + $html = '

Hello world

'; return $html; } } -?> \ No newline at end of file +?>