summaryrefslogtreecommitdiff
path: root/node.php
diff options
context:
space:
mode:
Diffstat (limited to 'node.php')
-rw-r--r--node.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/node.php b/node.php
index adb89fca4..e01fc9814 100644
--- a/node.php
+++ b/node.php
@@ -19,7 +19,7 @@ function node_render($node) {
break;
case t("Post comment"):
comment_post($edit);
- $theme->header();
+ $theme->header(check_output($node->title));
node_view($node);
comment_render($edit[id], $cid);
$theme->footer();
@@ -36,20 +36,20 @@ function node_render($node) {
break;
case t("Update settings"):
comment_settings(check_query($mode), check_query($order), check_query($threshold));
- $theme->header();
+ $theme->header(check_output($node->title));
node_view($node);
comment_render($id, $cid);
$theme->footer();
break;
case t("Update ratings"):
comment_moderate($moderate["comment"]);
- $theme->header();
+ $theme->header(check_output($node->title));
node_view($node);
comment_render($id, $cid);
$theme->footer();
break;
default:
- $theme->header();
+ $theme->header(check_output($node->title));
node_view($node);
comment_render($id, $cid);
$theme->footer();