diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-04-03 09:31:29 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-04-03 09:31:29 +0000 |
commit | cb321a0dad1f6ec1f3061c7882d5c244c702f0d5 (patch) | |
tree | a53076b959a0d72cfaca8038eeac0bd56b3a9e80 /mod/blog/start.php | |
parent | 1ea82fe304b680eb9f84c24b98eb718ca9d59316 (diff) | |
download | elgg-cb321a0dad1f6ec1f3061c7882d5c244c702f0d5.tar.gz elgg-cb321a0dad1f6ec1f3061c7882d5c244c702f0d5.tar.bz2 |
Adding name and posted date to blog entries
git-svn-id: https://code.elgg.org/elgg/trunk@382 36083f99-b078-4883-b0ff-0f9b5a30f544
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
|