diff options
author | Starla Insigna <hatkirby@fourisland.com> | 2009-10-02 19:04:20 -0400 |
---|---|---|
committer | Starla Insigna <hatkirby@fourisland.com> | 2009-10-02 19:04:20 -0400 |
commit | 9dfba1e70866fb2bb551678f6e04b8ddfd5467e1 (patch) | |
tree | 81f4731ae7b2fa902226f084480e26411ac3ad71 /pages/welcome.php | |
parent | 00586f1e8ada8f5baa6e3013525862dccac77b4a (diff) | |
download | fourisland-9dfba1e70866fb2bb551678f6e04b8ddfd5467e1.tar.gz fourisland-9dfba1e70866fb2bb551678f6e04b8ddfd5467e1.tar.bz2 fourisland-9dfba1e70866fb2bb551678f6e04b8ddfd5467e1.zip |
Fixed HTML Entites problem
When the poll escaping problem was fixed, a whole ton of other similar bugs were found which were also fixed here. Fixes #115
Diffstat (limited to 'pages/welcome.php')
-rwxr-xr-x | pages/welcome.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pages/welcome.php b/pages/welcome.php index 26f9938..5bd710c 100755 --- a/pages/welcome.php +++ b/pages/welcome.php | |||
@@ -74,7 +74,7 @@ while ($getpost3 = mysql_fetch_array($getpost2)) | |||
74 | 'MONTH' => date('M',strtotime($getpost3['pubDate'])), | 74 | 'MONTH' => date('M',strtotime($getpost3['pubDate'])), |
75 | 'DAY' => date('d',strtotime($getpost3['pubDate'])), | 75 | 'DAY' => date('d',strtotime($getpost3['pubDate'])), |
76 | 'CODED' => $getpost3['slug'], | 76 | 'CODED' => $getpost3['slug'], |
77 | 'TITLE' => $getpost3['title'], | 77 | 'TITLE' => htmlentities($getpost3['title']), |
78 | 'AUTHOR' => $getpost3['author'], | 78 | 'AUTHOR' => $getpost3['author'], |
79 | 'PLURALCOMMENT' => (isset($plural) ? $plural : ''), | 79 | 'PLURALCOMMENT' => (isset($plural) ? $plural : ''), |
80 | 'COMMENTS' => $comText, | 80 | 'COMMENTS' => $comText, |