diff options
Diffstat (limited to 'includes/header.php')
-rwxr-xr-x | includes/header.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/header.php b/includes/header.php index 3a8edff..003e002 100755 --- a/includes/header.php +++ b/includes/header.php | |||
@@ -77,7 +77,7 @@ $i=0; | |||
77 | while ($getaffs3 = mysql_fetch_array($getaffs2)) | 77 | while ($getaffs3 = mysql_fetch_array($getaffs2)) |
78 | { | 78 | { |
79 | $headerTemp->adds_block('AFFILIATES', array( 'COLOR' => getTagColor($i++), | 79 | $headerTemp->adds_block('AFFILIATES', array( 'COLOR' => getTagColor($i++), |
80 | 'TITLE' => $getaffs3['title'], | 80 | 'TITLE' => htmlentities($getaffs3['title']), |
81 | 'URL' => $getaffs3['url'])); | 81 | 'URL' => $getaffs3['url'])); |
82 | } | 82 | } |
83 | 83 | ||
@@ -87,7 +87,7 @@ $i=0; | |||
87 | while ($getwebps3 = mysql_fetch_array($getwebps2)) | 87 | while ($getwebps3 = mysql_fetch_array($getwebps2)) |
88 | { | 88 | { |
89 | $headerTemp->adds_block('WEBPROJS', array( 'COLOR' => getTagColor($i++), | 89 | $headerTemp->adds_block('WEBPROJS', array( 'COLOR' => getTagColor($i++), |
90 | 'TITLE' => $getwebps3['title'], | 90 | 'TITLE' => htmlentities($getwebps3['title']), |
91 | 'URL' => $getwebps3['url'])); | 91 | 'URL' => $getwebps3['url'])); |
92 | } | 92 | } |
93 | 93 | ||