From 880842885bd3e970bb752248ba72fb7b9957bc77 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Thu, 16 Oct 2003 17:29:26 +0000 Subject: - 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. --- modules/comment.module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/comment.module') 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"); -- cgit v1.2.3