summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2001-09-29 10:12:12 +0000
committerDries Buytaert <dries@buytaert.net>2001-09-29 10:12:12 +0000
commit27a56d71188f67f16438669a9b26767972640d96 (patch)
treeff092e7aacbb472ca5f0bf81475c8dd2a61f82f0
parenta55bfd169d713c1f261c37f13fde07e35751410f (diff)
downloadbrdo-27a56d71188f67f16438669a9b26767972640d96.tar.gz
brdo-27a56d71188f67f16438669a9b26767972640d96.tar.bz2
- small update
-rw-r--r--node.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/node.php b/node.php
index 5c555416e..6b3d1ffc2 100644
--- a/node.php
+++ b/node.php
@@ -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);