diff options
author | Dries Buytaert <dries@buytaert.net> | 2001-09-29 10:12:12 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2001-09-29 10:12:12 +0000 |
commit | 27a56d71188f67f16438669a9b26767972640d96 (patch) | |
tree | ff092e7aacbb472ca5f0bf81475c8dd2a61f82f0 | |
parent | a55bfd169d713c1f261c37f13fde07e35751410f (diff) | |
download | brdo-27a56d71188f67f16438669a9b26767972640d96.tar.gz brdo-27a56d71188f67f16438669a9b26767972640d96.tar.bz2 |
- small update
-rw-r--r-- | node.php | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -25,16 +25,16 @@ function node_render($node) { break; case t("Add comment"): $theme->header(); - comment_reply(check_input($cid), check_input($id)); + comment_reply(check_query($cid), check_query($id)); $theme->footer(); break; case "reply": $theme->header(); - comment_reply(check_input($pid), check_input($id)); + comment_reply(check_query($pid), check_query($id)); $theme->footer(); break; case t("Update settings"): - comment_settings(check_input($mode), check_input($order), check_input($threshold)); + comment_settings(check_query($mode), check_query($order), check_query($threshold)); $theme->header(); node_view($node); comment_render($id, $cid); |