diff options
author | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2003-03-09 17:19:50 +0000 |
---|---|---|
committer | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2003-03-09 17:19:50 +0000 |
commit | 1421c878d16f7d88bcc85c0dfc4b7c006b267526 (patch) | |
tree | 9b5227732b6c4f9a59fc7a1e190b14b4a13a30d0 /modules/comment.module | |
parent | f2c914af5b04297fccd8951f8c57c5472a70f9de (diff) | |
download | brdo-1421c878d16f7d88bcc85c0dfc4b7c006b267526.tar.gz brdo-1421c878d16f7d88bcc85c0dfc4b7c006b267526.tar.bz2 |
- Moved moderation logic back into node module.
* After having a chat with Dries we have agreed on the logics (or
more specifically he told me how its supposed to work). The queue
module is just a method to make moderation public, but its not
necessarily the only way. This brings the power back.
- Minor interface tweaks (names, case changes, etc).
- Fixed error that would show when you tried to view the profile of a
blocked user.
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 aa018de76..1d7ec04a6 100644 --- a/modules/comment.module +++ b/modules/comment.module @@ -1492,7 +1492,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("Disabled", "Read only", "Read/Write")); return $output; case "fields": return array("comment"); |