aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/posting.php
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2003-01-08 17:00:37 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2003-01-08 17:00:37 +0000
commit930a9223c76053b52db53a913572a2fcc8411dcf (patch)
tree17d5932f00e79a91cf7e2beeef0580856d63cbdd /phpBB/posting.php
parent1c5d6dcf39dc5b416d7ad71c146af16f3dfc0fbb (diff)
downloadforums-930a9223c76053b52db53a913572a2fcc8411dcf.tar
forums-930a9223c76053b52db53a913572a2fcc8411dcf.tar.gz
forums-930a9223c76053b52db53a913572a2fcc8411dcf.tar.bz2
forums-930a9223c76053b52db53a913572a2fcc8411dcf.tar.xz
forums-930a9223c76053b52db53a913572a2fcc8411dcf.zip
Oh my God what have they done? What HAVE they done .... infamy! infamy! they've all got it in-for-me ... (c) Rank
git-svn-id: file:///svn/phpbb/trunk@3277 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/posting.php')
-rw-r--r--phpBB/posting.php32
1 files changed, 16 insertions, 16 deletions
diff --git a/phpBB/posting.php b/phpBB/posting.php
index 2ae22c224c..35e1893480 100644
--- a/phpBB/posting.php
+++ b/phpBB/posting.php
@@ -19,8 +19,21 @@
*
***************************************************************************/
+// TODO for 2.2:
+//
+// * deletion of posts/polls? or should this (at least posts) be entirely handled by the mcp?
+// * topic review
+// * post preview (poll preview too?)
+// * check for reply since started posting upon submission?
+// * hidden form element containing sid to prevent remote posting - Edwin van Vliet
+// * attachments -> Acyd Burns Mod functionality
+// * bbcode parsing -> see functions_posting.php
+// * lock topic option within posting
+// * multichoice polls
+// * permission defined ability for user to add poll options
+
// Grab all data
-import_request_variables('GP');
+import_request_variables('GP', 's_');
define('IN_PHPBB', true);
$phpbb_root_path = './';
@@ -41,20 +54,6 @@ if (!empty($cancel))
redirect($redirect);
}
-
-// TODO:
-// * deletion of posts/polls? or should this (at least posts)
-// be entirely handled by the mcp?
-// * topic review
-// * post preview (poll preview too?)
-// * check for reply since started posting upon submission?
-// * hidden form element containing sid to prevent remote
-// posting - Edwin van Vliet
-// * attachments
-// * bbcode parsing
-// * lock topic option within posting
-
-
// ---------
// POST INFO
@@ -518,6 +517,7 @@ if (isset($post))
$template->assign_vars(array(
'ERROR_MESSAGE' => $err_msg)
);
+
} // isset($post)
// PROCESS SUBMIT
@@ -889,4 +889,4 @@ function topic_review($topic_id, $is_inline_review = false)
}
}
-?>
+?> \ No newline at end of file