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 = '
Hello world
'; return $html; } } -?> \ No newline at end of file +?>