diff options
author | Starla Insigna <hatkirby@fourisland.com> | 2009-11-26 15:07:16 -0500 |
---|---|---|
committer | Starla Insigna <hatkirby@fourisland.com> | 2009-11-26 15:07:16 -0500 |
commit | 64b4f071c2e2e0cb8c8232b39211a7c3cfa24a8c (patch) | |
tree | a2fff2c5021bae6ce3e25d939b9d515b8c2a65e7 /pages | |
parent | 224f9ee5014ae5c5399188afd8d38e3b620e2856 (diff) | |
download | fourisland-64b4f071c2e2e0cb8c8232b39211a7c3cfa24a8c.tar.gz fourisland-64b4f071c2e2e0cb8c8232b39211a7c3cfa24a8c.tar.bz2 fourisland-64b4f071c2e2e0cb8c8232b39211a7c3cfa24a8c.zip |
Added stripslashes() to viewPost
Diffstat (limited to 'pages')
-rw-r--r-- | pages/viewPost.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pages/viewPost.php b/pages/viewPost.php index 1daca00..5885bc9 100644 --- a/pages/viewPost.php +++ b/pages/viewPost.php | |||
@@ -44,7 +44,7 @@ if (!isAdmin()) | |||
44 | 'TITLE' => $getpost3['title'], | 44 | 'TITLE' => $getpost3['title'], |
45 | 'AUTHOR' => $getpost3['author'], | 45 | 'AUTHOR' => $getpost3['author'], |
46 | 'RATING' => $getpost3['rating'], | 46 | 'RATING' => $getpost3['rating'], |
47 | 'TEXT' => parseText($getpost3['text']))); | 47 | 'TEXT' => parseText(stripslashes($getpost3['text'])))); |
48 | 48 | ||
49 | $tags = getTags($getpost3['id']); | 49 | $tags = getTags($getpost3['id']); |
50 | foreach ($tags as $tag) | 50 | foreach ($tags as $tag) |