diff --git a/includes/backend.inc b/includes/backend.inc index bbc4ece0b5f8815bb816bbae8e973a1ccbf32e73..910edc40667db80b178f56b7388550aa47585136 100644 --- a/includes/backend.inc +++ b/includes/backend.inc @@ -104,13 +104,13 @@ function rdf2sql($timout = 10) { $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: