diff options
author | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2003-03-08 14:35:42 +0000 |
---|---|---|
committer | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2003-03-08 14:35:42 +0000 |
commit | a0deb476faf8d35794c8e1286037ced22959bd07 (patch) | |
tree | 1ea62b601ba7538fd5ac19bae3e38ed367faffce /modules/comment.module | |
parent | b0859dcbd4f3b9b73ca8e43b73a248f17d81a80c (diff) | |
download | brdo-a0deb476faf8d35794c8e1286037ced22959bd07.tar.gz brdo-a0deb476faf8d35794c8e1286037ced22959bd07.tar.bz2 |
- Changed _nodeapi("conf") to _nodeapi("settings").
- Changed node settings page to use table().
- Minor code beautification here and there.
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 c6182d09f..aa018de76 100644 --- a/modules/comment.module +++ b/modules/comment.module @@ -1491,7 +1491,7 @@ function comment_update_index() { function comment_nodeapi(&$node, $op, $arg = 0) { switch ($op) { - case "conf": + case "settings": $output[t("Comment")] = form_select("", "comment_$node->type", variable_get("comment_$node->type", 2), array("Disabled", "Read only", "Read/Write")); return $output; case "fields": |