From 61615f190616729f7ccae5012e29c0b1cf29da8c Mon Sep 17 00:00:00 2001 From: Starla Insigna Date: Mon, 6 Sep 2010 07:39:37 -0400 Subject: Stripped slashes from Affiliates and Website Projects --- includes/layout.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/layout.php b/includes/layout.php index 566ce50..24d8a30 100755 --- a/includes/layout.php +++ b/includes/layout.php @@ -76,7 +76,7 @@ $i=0; while ($getaffs3 = mysql_fetch_array($getaffs2)) { $template->adds_block('AFFILIATES', array( 'COLOR' => getTagColor($i++), - 'TITLE' => doAprilFoolsDay(htmlentities($getaffs3['title'])), + 'TITLE' => doAprilFoolsDay(htmlentities(stripslashes($getaffs3['title']))), 'URL' => $getaffs3['url'])); } @@ -86,7 +86,7 @@ $i=0; while ($getwebps3 = mysql_fetch_array($getwebps2)) { $template->adds_block('WEBPROJS', array( 'COLOR' => getTagColor($i++), - 'TITLE' => doAprilFoolsDay(htmlentities($getwebps3['title'])), + 'TITLE' => doAprilFoolsDay(htmlentities(stripslashes($getwebps3['title']))), 'URL' => $getwebps3['url'])); } -- cgit 1.4.1