aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorOleg Pudeyev <oleg@bsdpower.com>2013-01-04 18:52:08 -0500
committerOleg Pudeyev <oleg@bsdpower.com>2013-01-04 18:52:08 -0500
commitdf5cba46d990ba3929fc8c769b284b9e9b1c8762 (patch)
treee79c993d73f706e49f6cbb039055ed7bbe153888 /phpBB
parent228580b6743b9650996284dd04a3f5de6c2447ca (diff)
parent68baee4ce2388f9c6233e48ffb4b1223e7671373 (diff)
downloadforums-df5cba46d990ba3929fc8c769b284b9e9b1c8762.tar
forums-df5cba46d990ba3929fc8c769b284b9e9b1c8762.tar.gz
forums-df5cba46d990ba3929fc8c769b284b9e9b1c8762.tar.bz2
forums-df5cba46d990ba3929fc8c769b284b9e9b1c8762.tar.xz
forums-df5cba46d990ba3929fc8c769b284b9e9b1c8762.zip
Merge PR #1177 branch 'erikfrerejean/ticket/11309' into develop
# By Erik Frèrejean # Via Erik Frèrejean * erikfrerejean/ticket/11309: [ticket/11309] phpbb_extension_interface::disable_step correct docblock.
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/includes/extension/interface.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/phpBB/includes/extension/interface.php b/phpBB/includes/extension/interface.php
index 74ecb9b762..7b36a12bf6 100644
--- a/phpBB/includes/extension/interface.php
+++ b/phpBB/includes/extension/interface.php
@@ -45,7 +45,9 @@ interface phpbb_extension_interface
*
* @param mixed $old_state The return value of the previous call
* of this method, or false on the first call
- * @return null
+ * @return mixed Returns false after last step, otherwise
+ * temporary state which is passed as an
+ * argument to the next step
*/
public function disable_step($old_state);