diff options
Diffstat (limited to 'pages/post.php')
| -rwxr-xr-x | pages/post.php | 4 |
1 files changed, 2 insertions, 2 deletions
| diff --git a/pages/post.php b/pages/post.php index 3f728c8..a5435c9 100755 --- a/pages/post.php +++ b/pages/post.php | |||
| @@ -68,7 +68,7 @@ if (!isset($_POST['id'])) | |||
| 68 | $template = new FITemplate('new-comment'); | 68 | $template = new FITemplate('new-comment'); |
| 69 | $template->add('ID', $cid); | 69 | $template->add('ID', $cid); |
| 70 | $template->add('CODEDEMAIL', md5(strtolower($getanon3['email']))); | 70 | $template->add('CODEDEMAIL', md5(strtolower($getanon3['email']))); |
| 71 | $template->add('TEXT', stripslashes($_POST['comment'])); | 71 | $template->add('TEXT', $_POST['comment']); |
| 72 | $template->add('USERNAME', $getanon3['username']); | 72 | $template->add('USERNAME', $getanon3['username']); |
| 73 | $template->add('DATE', date("F jS Y \a\\t g:i:s a")); | 73 | $template->add('DATE', date("F jS Y \a\\t g:i:s a")); |
| 74 | $template->display(); | 74 | $template->display(); |
| @@ -108,7 +108,7 @@ if (!isset($_POST['id'])) | |||
| 108 | $template = new FITemplate('new-comment'); | 108 | $template = new FITemplate('new-comment'); |
| 109 | $template->add('ID', $cid); | 109 | $template->add('ID', $cid); |
| 110 | $template->add('CODEDEMAIL', md5(strtolower($getuser3['user_email']))); | 110 | $template->add('CODEDEMAIL', md5(strtolower($getuser3['user_email']))); |
| 111 | $template->add('TEXT', stripslashes($_POST['comment'])); | 111 | $template->add('TEXT', $_POST['comment']); |
| 112 | $template->add('USERNAME', getSessionUsername()); | 112 | $template->add('USERNAME', getSessionUsername()); |
| 113 | $template->add('DATE', date("F jS Y \a\\t g:i:s a")); | 113 | $template->add('DATE', date("F jS Y \a\\t g:i:s a")); |
| 114 | $template->display(); | 114 | $template->display(); |
