diff options
author | Marc Alexander <admin@m-a-styles.de> | 2015-10-12 21:56:09 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2015-10-12 21:56:09 +0200 |
commit | 75e5e2471e7b6b9e1d605f0c3cce5f1fbd373ac0 (patch) | |
tree | b5d4f73f0d96b71515cacc7ecce44e01d49b089e /phpBB/posting.php | |
parent | 578ee077c114f63a6de0c277669ba91bd9f1219f (diff) | |
download | forums-75e5e2471e7b6b9e1d605f0c3cce5f1fbd373ac0.tar forums-75e5e2471e7b6b9e1d605f0c3cce5f1fbd373ac0.tar.gz forums-75e5e2471e7b6b9e1d605f0c3cce5f1fbd373ac0.tar.bz2 forums-75e5e2471e7b6b9e1d605f0c3cce5f1fbd373ac0.tar.xz forums-75e5e2471e7b6b9e1d605f0c3cce5f1fbd373ac0.zip |
[ticket/14234] Get rid of undefined variables
PHPBB3-14234
Diffstat (limited to 'phpBB/posting.php')
-rw-r--r-- | phpBB/posting.php | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/phpBB/posting.php b/phpBB/posting.php index 47fdb2d378..a8e4e4015e 100644 --- a/phpBB/posting.php +++ b/phpBB/posting.php @@ -1256,7 +1256,6 @@ if ($submit || $preview || $refresh) * @var array poll Array with poll data from post (must be used instead of the post_data equivalent) * @var string mode What action to take if the form is submitted * post|reply|quote|edit|delete|bump|smilies|popup - * @var string page_title Title of the mode page * @var int post_id ID of the post * @var int topic_id ID of the topic * @var int forum_id ID of the forum @@ -1265,12 +1264,12 @@ if ($submit || $preview || $refresh) * NOTE: Should be actual language strings, NOT language keys. * @since 3.1.0-RC5 * @change 3.1.5-RC1 Added poll array to the event + * @change 3.2.0-a1 Removed undefined page_title */ $vars = array( 'post_data', 'poll', 'mode', - 'page_title', 'post_id', 'topic_id', 'forum_id', @@ -1383,7 +1382,6 @@ if ($submit || $preview || $refresh) * @var array data Array with post data going to be stored in the database * @var string mode What action to take if the form is submitted * post|reply|quote|edit|delete - * @var string page_title Title of the mode page * @var int post_id ID of the post * @var int topic_id ID of the topic * @var int forum_id ID of the forum @@ -1393,13 +1391,13 @@ if ($submit || $preview || $refresh) * NOTE: Should be actual language strings, NOT language keys. * @since 3.1.0-RC5 * @changed 3.1.6-RC1 remove submit and error from event Submit and Error are checked previously prior to running event + * @change 3.2.0-a1 Removed undefined page_title */ $vars = array( 'post_data', 'poll', 'data', 'mode', - 'page_title', 'post_id', 'topic_id', 'forum_id', @@ -1421,7 +1419,6 @@ if ($submit || $preview || $refresh) * @var array data Array with post data going to be stored in the database * @var string mode What action to take if the form is submitted * post|reply|quote|edit|delete - * @var string page_title Title of the mode page * @var int post_id ID of the post * @var int topic_id ID of the topic * @var int forum_id ID of the forum @@ -1432,13 +1429,13 @@ if ($submit || $preview || $refresh) * NOTE: Should be actual language strings, NOT language keys. * @since 3.1.0-RC5 * @changed 3.1.6-RC1 remove submit and error from event Submit and Error are checked previously prior to running event + * @change 3.2.0-a1 Removed undefined page_title */ $vars = array( 'post_data', 'poll', 'data', 'mode', - 'page_title', 'post_id', 'topic_id', 'forum_id', |