diff options
author | Dries Buytaert <dries@buytaert.net> | 2000-10-18 07:45:39 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2000-10-18 07:45:39 +0000 |
commit | 68d443831daf3313b99881f50a01c7dce44232be (patch) | |
tree | 5e4518490ba7a2a9f8ab38763d26cd885ae3cab5 /includes/backend.inc | |
parent | 2d638e99b514bc3933ad196df0eb2406f8c58d17 (diff) | |
download | brdo-68d443831daf3313b99881f50a01c7dce44232be.tar.gz brdo-68d443831daf3313b99881f50a01c7dce44232be.tar.bz2 |
* fixed a small bug
Diffstat (limited to 'includes/backend.inc')
-rw-r--r-- | includes/backend.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/backend.inc b/includes/backend.inc index 5e2093aec..bbc4ece0b 100644 --- a/includes/backend.inc +++ b/includes/backend.inc @@ -104,7 +104,7 @@ class backend { $title = ereg_replace("</title>.*", "", $title); ### Clean headlines: - $title = stripslashes(fixquotes($title)); + $title = stripslashes(check_input($title)); ### Count the number of stories: $number += 1; |