diff options
Diffstat (limited to 'node.php')
-rw-r--r-- | node.php | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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(); |