diff options
author | Dries Buytaert <dries@buytaert.net> | 2001-11-07 18:14:46 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2001-11-07 18:14:46 +0000 |
commit | 234b40b25321e6ddde6815f8fff6dc33fd3317bc (patch) | |
tree | 5bde9e359979247fb2008e27f09de48f1b9a9e4e /modules/blog/blog.module | |
parent | 74a1fe5718ff4cec0f04c32a8cb0cd356aa8d6d7 (diff) | |
download | brdo-234b40b25321e6ddde6815f8fff6dc33fd3317bc.tar.gz brdo-234b40b25321e6ddde6815f8fff6dc33fd3317bc.tar.bz2 |
- node system:
+ Added the "delete node"-link: apparently it got lost during the last
commit. Odd.
+ Changed "Edit node" to "Edit <node_name>" on the 'edit node'-page of
the admin section. (There a 4 "Node"s that still need to be removed
though.)
+ Updated the initial submission page (the old submit.php) to include
some descriptions.
Diffstat (limited to 'modules/blog/blog.module')
-rw-r--r-- | modules/blog/blog.module | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/blog/blog.module b/modules/blog/blog.module index d4bded863..39be32ae0 100644 --- a/modules/blog/blog.module +++ b/modules/blog/blog.module @@ -12,7 +12,8 @@ function blog_conf_options() { function blog_node($field) { global $user; - $info = array("name" => "personal blog"); + $info["name"] = t("personal blog"); + $info["description"] = t("A blog is your personal diary or journal. It is made up of individual entries that are time stamped and are typically arranged by the day, as normal a diary. Blogs often contain links to things you've seen, or on which you agree/disagree. Since a Blog is your personal, you and only you have full control on what you publish. The most insteresting blogs, or those blogs that fits the site's topic might get promoted to the front page."); return $info[$field]; } |