diff options
author | Starla Insigna <hatkirby@fourisland.com> | 2010-09-06 07:39:37 -0400 |
---|---|---|
committer | Starla Insigna <hatkirby@fourisland.com> | 2010-09-06 07:39:37 -0400 |
commit | 61615f190616729f7ccae5012e29c0b1cf29da8c (patch) | |
tree | 17c5fcc7a53b7f4eb69eae77e4f14fc82e91fbf3 /includes | |
parent | b3655d2937d02c6943143550056e1221487b19ae (diff) | |
download | fourisland-61615f190616729f7ccae5012e29c0b1cf29da8c.tar.gz fourisland-61615f190616729f7ccae5012e29c0b1cf29da8c.tar.bz2 fourisland-61615f190616729f7ccae5012e29c0b1cf29da8c.zip |
Stripped slashes from Affiliates and Website Projects
Diffstat (limited to 'includes')
-rwxr-xr-x | includes/layout.php | 4 |
1 files 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; | |||
76 | while ($getaffs3 = mysql_fetch_array($getaffs2)) | 76 | while ($getaffs3 = mysql_fetch_array($getaffs2)) |
77 | { | 77 | { |
78 | $template->adds_block('AFFILIATES', array( 'COLOR' => getTagColor($i++), | 78 | $template->adds_block('AFFILIATES', array( 'COLOR' => getTagColor($i++), |
79 | 'TITLE' => doAprilFoolsDay(htmlentities($getaffs3['title'])), | 79 | 'TITLE' => doAprilFoolsDay(htmlentities(stripslashes($getaffs3['title']))), |
80 | 'URL' => $getaffs3['url'])); | 80 | 'URL' => $getaffs3['url'])); |
81 | } | 81 | } |
82 | 82 | ||
@@ -86,7 +86,7 @@ $i=0; | |||
86 | while ($getwebps3 = mysql_fetch_array($getwebps2)) | 86 | while ($getwebps3 = mysql_fetch_array($getwebps2)) |
87 | { | 87 | { |
88 | $template->adds_block('WEBPROJS', array( 'COLOR' => getTagColor($i++), | 88 | $template->adds_block('WEBPROJS', array( 'COLOR' => getTagColor($i++), |
89 | 'TITLE' => doAprilFoolsDay(htmlentities($getwebps3['title'])), | 89 | 'TITLE' => doAprilFoolsDay(htmlentities(stripslashes($getwebps3['title']))), |
90 | 'URL' => $getwebps3['url'])); | 90 | 'URL' => $getwebps3['url'])); |
91 | } | 91 | } |
92 | 92 | ||