diff options
Diffstat (limited to 'pages/welcome.php')
| -rwxr-xr-x | pages/welcome.php | 4 |
1 files changed, 2 insertions, 2 deletions
| diff --git a/pages/welcome.php b/pages/welcome.php index 833af8a..819420b 100755 --- a/pages/welcome.php +++ b/pages/welcome.php | |||
| @@ -77,12 +77,12 @@ while ($getpost3 = mysql_fetch_array($getpost2)) | |||
| 77 | 'MONTH' => date('M',strtotime($getpost3['pubDate'])), | 77 | 'MONTH' => date('M',strtotime($getpost3['pubDate'])), |
| 78 | 'DAY' => date('d',strtotime($getpost3['pubDate'])), | 78 | 'DAY' => date('d',strtotime($getpost3['pubDate'])), |
| 79 | 'CODED' => $getpost3['slug'], | 79 | 'CODED' => $getpost3['slug'], |
| 80 | 'TITLE' => htmlentities($getpost3['title']), | 80 | 'TITLE' => htmlentities(stripslashes($getpost3['title'])), |
| 81 | 'AUTHOR' => $getpost3['author'], | 81 | 'AUTHOR' => $getpost3['author'], |
| 82 | 'PLURALCOMMENT' => (isset($plural) ? $plural : ''), | 82 | 'PLURALCOMMENT' => (isset($plural) ? $plural : ''), |
| 83 | 'COMMENTS' => $comText, | 83 | 'COMMENTS' => $comText, |
| 84 | 'RATING' => $getpost3['rating'], | 84 | 'RATING' => $getpost3['rating'], |
| 85 | 'TEXT' => parseText($getpost3['text']))); | 85 | 'TEXT' => parseText(stripslashes($getpost3['text'])))); |
| 86 | 86 | ||
| 87 | $tags = getTags($getpost3['id']); | 87 | $tags = getTags($getpost3['id']); |
| 88 | foreach ($tags as $tag) | 88 | foreach ($tags as $tag) |
