summary refs log tree commit diff stats
path: root/pages/viewPost.php
diff options
context:
space:
mode:
authorStarla Insigna <hatkirby@fourisland.com>2009-11-26 15:07:16 -0500
committerStarla Insigna <hatkirby@fourisland.com>2009-11-26 15:07:16 -0500
commit64b4f071c2e2e0cb8c8232b39211a7c3cfa24a8c (patch)
treea2fff2c5021bae6ce3e25d939b9d515b8c2a65e7 /pages/viewPost.php
parent224f9ee5014ae5c5399188afd8d38e3b620e2856 (diff)
downloadfourisland-64b4f071c2e2e0cb8c8232b39211a7c3cfa24a8c.tar.gz
fourisland-64b4f071c2e2e0cb8c8232b39211a7c3cfa24a8c.tar.bz2
fourisland-64b4f071c2e2e0cb8c8232b39211a7c3cfa24a8c.zip
Added stripslashes() to viewPost
Diffstat (limited to 'pages/viewPost.php')
-rw-r--r--pages/viewPost.php2
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)