From a4f431aeb41b7d98fcf913aff53c27f42e0fa929 Mon Sep 17 00:00:00 2001 From: Kjartan Mannes <kjartan@2.no-reply.drupal.org> Date: Sun, 9 Dec 2001 13:40:47 +0000 Subject: [PATCH] - strip HTML tags from comment subjects. --- modules/comment.module | 2 +- modules/comment/comment.module | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/comment.module b/modules/comment.module index f18054efd3ef..0bf0245011e1 100644 --- a/modules/comment.module +++ b/modules/comment.module @@ -115,7 +115,7 @@ function comment_post($edit) { } else { // validate subject: - $edit[subject] = $edit[subject] ? $edit[subject] : substr($edit[comment], 0, 29); + $edit[subject] = strip_tags(($edit[subject] ? $edit[subject] : substr($edit[comment], 0, 29))); // add watchdog entry: watchdog("special", "comment: added '$edit[subject]'"); diff --git a/modules/comment/comment.module b/modules/comment/comment.module index f18054efd3ef..0bf0245011e1 100644 --- a/modules/comment/comment.module +++ b/modules/comment/comment.module @@ -115,7 +115,7 @@ function comment_post($edit) { } else { // validate subject: - $edit[subject] = $edit[subject] ? $edit[subject] : substr($edit[comment], 0, 29); + $edit[subject] = strip_tags(($edit[subject] ? $edit[subject] : substr($edit[comment], 0, 29))); // add watchdog entry: watchdog("special", "comment: added '$edit[subject]'"); -- GitLab