Skip to content
This repository was archived by the owner on Apr 19, 2022. It is now read-only.

Commit ef51dfa

Browse files
committed
Fixes
1 parent 7d42386 commit ef51dfa

File tree

2 files changed

+8
-25
lines changed

2 files changed

+8
-25
lines changed

admin/templates/default/css/main.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ div.dashboard_box a.comment_spam {
281281
border-left: 4px solid #D72020 !important;
282282
}
283283

284-
div.dashboard_box a.comment_unapprove {
284+
div.dashboard_box a.comment_unapproved {
285285
border-left: 4px solid #F1CC19 !important;
286286
}
287287

plugins/hello/plugin.bit

+7-24
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,19 @@
11
<?php
2-
// =====================================================================
3-
// PLUGIN INFO
4-
// =====================================================================
2+
53
$_PLUGIN_CONFIG['DATA'] = array(
6-
'author'=>'Diego Najar',
7-
'version'=>'3.6',
8-
'url'=>'http://www.nibbleblog.com'
4+
'author'=>'My name or nickname',
5+
'version'=>'1.0',
6+
'url'=>'http://www.mysite.com'
97
);
108

11-
// =====================================================================
12-
// PLUGIN CLASS
13-
// =====================================================================
14-
class PLUGIN_CATEGORIES extends Plugin
9+
class PLUGIN_HELLO extends Plugin
1510
{
1611
public function blog_body()
1712
{
18-
global $categories;
19-
20-
$html = '<ul>';
21-
22-
foreach($categories as $category)
23-
{
24-
// URL generator
25-
$href = Url::category($category['slug']);
26-
27-
$html .= '<li class="category"><a href="'.$href.'">'.$category['name'].'</a></li>';
28-
}
29-
30-
$html .= '</ul>';
13+
$html = '<p>Hello world</p>';
3114

3215
return $html;
3316
}
3417
}
3518

36-
?>
19+
?>

0 commit comments

Comments
 (0)