diff options
author | PayBas <contact@paybas.com> | 2014-04-04 18:26:20 +0200 |
---|---|---|
committer | PayBas <contact@paybas.com> | 2014-04-04 18:26:20 +0200 |
commit | 084e6725f7ee6ddd1b4a0494ff2c65213a70f67b (patch) | |
tree | 6cf8c4084a8e66777a3df1105628ad148307bb44 /phpBB | |
parent | c6c5f7c874cb5ceaf0b06a44cff666b1050fe4ec (diff) | |
download | forums-084e6725f7ee6ddd1b4a0494ff2c65213a70f67b.tar forums-084e6725f7ee6ddd1b4a0494ff2c65213a70f67b.tar.gz forums-084e6725f7ee6ddd1b4a0494ff2c65213a70f67b.tar.bz2 forums-084e6725f7ee6ddd1b4a0494ff2c65213a70f67b.tar.xz forums-084e6725f7ee6ddd1b4a0494ff2c65213a70f67b.zip |
[ticket/12339] removed return var
need to learn more about events... evidently
PHPBB3-12339
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/includes/functions.php | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index d2735c8e43..3dddbdca6b 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -4967,11 +4967,10 @@ function page_header($page_title = '', $display_online_list = true, $item_id = 0 * session item, e.g. forum for * session_forum_id * @var int item_id Restrict online users to item id - * @var bool page_header_override Shall we return instead of running - * the rest of page_header() + * * @since 3.1.0-b3 */ - $vars = array('page_title', 'display_online_list', 'item_id', 'item', 'page_header_override'); + $vars = array('page_title', 'display_online_list', 'item_id', 'item'); extract($phpbb_dispatcher->trigger_event('core.page_header_after', compact($vars))); // application/xhtml+xml not used because of IE |