aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions.php
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-04-25 12:15:44 +0200
committerJoas Schilling <nickvergessen@gmx.de>2014-04-25 12:15:44 +0200
commitb32895308d13d5d9b0cd954fd8ce871a1fa073da (patch)
tree2a158ed71ab6ebc625dae51fc8f188b1768e5aed /phpBB/includes/functions.php
parent87899b0e140400e23341ea1286d50e330132be90 (diff)
downloadforums-b32895308d13d5d9b0cd954fd8ce871a1fa073da.tar
forums-b32895308d13d5d9b0cd954fd8ce871a1fa073da.tar.gz
forums-b32895308d13d5d9b0cd954fd8ce871a1fa073da.tar.bz2
forums-b32895308d13d5d9b0cd954fd8ce871a1fa073da.tar.xz
forums-b32895308d13d5d9b0cd954fd8ce871a1fa073da.zip
[ticket/12273] Update since version to 3.1.0-a* style
PHPBB3-12273
Diffstat (limited to 'phpBB/includes/functions.php')
-rw-r--r--phpBB/includes/functions.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php
index 69f7c3f162..685784190a 100644
--- a/phpBB/includes/functions.php
+++ b/phpBB/includes/functions.php
@@ -2022,7 +2022,7 @@ function append_sid($url, $params = false, $is_amp = true, $session_id = false)
* the global one (false)
* @var bool|string append_sid_overwrite Overwrite function (string
* URL) or not (false)
- * @since 3.1-A1
+ * @since 3.1.0-a1
*/
$vars = array('url', 'params', 'is_amp', 'session_id', 'append_sid_overwrite');
extract($phpbb_dispatcher->trigger_event('core.append_sid', compact($vars)));
@@ -4735,7 +4735,7 @@ function page_header($page_title = '', $display_online_list = false, $item_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-A1
+ * @since 3.1.0-a1
*/
$vars = array('page_title', 'display_online_list', 'item_id', 'item', 'page_header_override');
extract($phpbb_dispatcher->trigger_event('core.page_header', compact($vars)));
@@ -5100,7 +5100,7 @@ function page_footer($run_cron = true, $display_template = true, $exit_handler =
* @var bool run_cron Shall we run cron tasks
* @var bool page_footer_override Shall we return instead of running
* the rest of page_footer()
- * @since 3.1-A1
+ * @since 3.1.0-a1
*/
$vars = array('run_cron', 'page_footer_override');
extract($phpbb_dispatcher->trigger_event('core.page_footer', compact($vars)));
@@ -5208,7 +5208,7 @@ function garbage_collection()
* Unload some objects, to free some memory, before we finish our task
*
* @event core.garbage_collection
- * @since 3.1-A1
+ * @since 3.1.0-a1
*/
$phpbb_dispatcher->dispatch('core.garbage_collection');
}