diff options
author | Starla Insigna <hatkirby@fourisland.com> | 2009-11-28 17:06:22 -0500 |
---|---|---|
committer | Starla Insigna <hatkirby@fourisland.com> | 2009-11-28 17:06:22 -0500 |
commit | b678ebeed7c82dc436e90e0b52bf61c71c10f30e (patch) | |
tree | fffba68be36d39996ca64d7b041c6578770bcac7 | |
parent | 41ac5bc9d034338acf12ab21ef95b5189223b4de (diff) | |
download | fourisland-b678ebeed7c82dc436e90e0b52bf61c71c10f30e.tar.gz fourisland-b678ebeed7c82dc436e90e0b52bf61c71c10f30e.tar.bz2 fourisland-b678ebeed7c82dc436e90e0b52bf61c71c10f30e.zip |
Added stripslashes() to the Blog Archive
-rw-r--r-- | pages/archive.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pages/archive.php b/pages/archive.php index 39a9fa7..71a251d 100644 --- a/pages/archive.php +++ b/pages/archive.php | |||
@@ -87,7 +87,7 @@ while ($getposts3[$i] = mysql_fetch_array($getposts2)) | |||
87 | 87 | ||
88 | $template->adds_ref_sub($curID, 'SMALL',array( 'DATE' => date('m-d-Y',strtotime($getposts3[$i]['pubDate'])), | 88 | $template->adds_ref_sub($curID, 'SMALL',array( 'DATE' => date('m-d-Y',strtotime($getposts3[$i]['pubDate'])), |
89 | 'CODED' => $getposts3[$i]['slug'], | 89 | 'CODED' => $getposts3[$i]['slug'], |
90 | 'TITLE' => htmlentities($getposts3[$i]['title']))); | 90 | 'TITLE' => htmlentities(stripslashes($getposts3[$i]['title'])))); |
91 | $i++; | 91 | $i++; |
92 | } | 92 | } |
93 | if ($i==0) | 93 | if ($i==0) |