diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-10-16 17:29:26 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-10-16 17:29:26 +0000 |
commit | 880842885bd3e970bb752248ba72fb7b9957bc77 (patch) | |
tree | 90deba74233ee69c3b08c41d3802138527ddf06e /modules/comment.module | |
parent | 7624580f76937fbb004f81da8e6069dbb16921dc (diff) | |
download | brdo-880842885bd3e970bb752248ba72fb7b9957bc77.tar.gz brdo-880842885bd3e970bb752248ba72fb7b9957bc77.tar.bz2 |
- Fixed bug #3637: made comment module settings translatable. Patch #13 by Moshe.
- Fixed bug #3642: removed duplicate settings from user page. Patch #14 by Moshe.
- Fixed bug #3503: added 'forum topic' link to the 'create content' menu. Patch
by Gobar. I think this might be more intuitive and consistent code-wise; I don't
want to introduce small hacks.
- Cache improvement: small cache improvement to prevent SQL errors. Patch by
Jeremy.
Diffstat (limited to 'modules/comment.module')
-rw-r--r-- | modules/comment.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/comment.module b/modules/comment.module index 4b700fd05..10ba96760 100644 --- a/modules/comment.module +++ b/modules/comment.module @@ -1619,7 +1619,7 @@ function comment_update_index() { function comment_nodeapi(&$node, $op, $arg = 0) { switch ($op) { case "settings": - $output[t("comment")] = form_select("", "comment_$node->type", variable_get("comment_$node->type", 2), array("Disabled", "Read only", "Read/Write")); + $output[t("comment")] = form_select("", "comment_$node->type", variable_get("comment_$node->type", 2), array(t("Disabled"), t("Read only"), t("Read/Write"))); return $output; case "fields": return array("comment"); |