diff options
Diffstat (limited to 'includes/backend.inc')
-rw-r--r-- | includes/backend.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/backend.inc b/includes/backend.inc index bbc4ece0b..910edc406 100644 --- a/includes/backend.inc +++ b/includes/backend.inc @@ -104,13 +104,13 @@ class backend { $title = ereg_replace("</title>.*", "", $title); ### Clean headlines: - $title = stripslashes(check_input($title)); + $title = stripslashes($title); ### Count the number of stories: $number += 1; ### Insert item in database: - $result = db_query("INSERT INTO headlines (id, title, link, number) VALUES('$this->id', '$title', '$link', '$number')"); + $result = db_query("INSERT INTO headlines (id, title, link, number) VALUES('$this->id', '". stripslashes($title) ."', '". stripslashes($link) ."', '$number')"); } ### Mark channels as being updated: |