diff options
Diffstat (limited to 'mod/blog/start.php')
-rw-r--r-- | mod/blog/start.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/mod/blog/start.php b/mod/blog/start.php index d3513dc02..6b1ca3766 100644 --- a/mod/blog/start.php +++ b/mod/blog/start.php @@ -25,7 +25,7 @@ // Load system configuration
global $CONFIG;
- // Load translations
+ // Load the language file
register_translations($CONFIG->pluginspath . "blog/languages/");
// Set up menu for logged in users
@@ -36,6 +36,9 @@ ));
}
+ // Extend system CSS with our own styles, which are defined in the blog/css view
+ extend_view('css','blog/css');
+
}
// Make sure the blog initialisation function is called on initialisation
|