summary refs log tree commit diff stats
path: root/pages/archive.php
diff options
context:
space:
mode:
authorStarla Insigna <hatkirby@fourisland.com>2009-11-28 17:06:22 -0500
committerStarla Insigna <hatkirby@fourisland.com>2009-11-28 17:06:22 -0500
commitb678ebeed7c82dc436e90e0b52bf61c71c10f30e (patch)
treefffba68be36d39996ca64d7b041c6578770bcac7 /pages/archive.php
parent41ac5bc9d034338acf12ab21ef95b5189223b4de (diff)
downloadfourisland-b678ebeed7c82dc436e90e0b52bf61c71c10f30e.tar.gz
fourisland-b678ebeed7c82dc436e90e0b52bf61c71c10f30e.tar.bz2
fourisland-b678ebeed7c82dc436e90e0b52bf61c71c10f30e.zip
Added stripslashes() to the Blog Archive
Diffstat (limited to 'pages/archive.php')
-rw-r--r--pages/archive.php2
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}
93if ($i==0) 93if ($i==0)