diff options
author | Jakub Senko <jakubsenko@gmail.com> | 2016-12-04 17:30:42 +0100 |
---|---|---|
committer | Jakub Senko <jakubsenko@gmail.com> | 2017-01-23 13:33:15 +0100 |
commit | 779758f2195f87868da3694b5ffd00adee1be0b3 (patch) | |
tree | 5c0550b4e1d5c9d9edbf8c7ed8d2390aa5401819 /phpBB/includes/functions.php | |
parent | 2f1d2e847e9bb08b22ed42e8dc06362d962d2efb (diff) | |
download | forums-779758f2195f87868da3694b5ffd00adee1be0b3.tar forums-779758f2195f87868da3694b5ffd00adee1be0b3.tar.gz forums-779758f2195f87868da3694b5ffd00adee1be0b3.tar.bz2 forums-779758f2195f87868da3694b5ffd00adee1be0b3.tar.xz forums-779758f2195f87868da3694b5ffd00adee1be0b3.zip |
[ticket/13429] Replace @change with @changed
PHPBB3-13429
Diffstat (limited to 'phpBB/includes/functions.php')
-rw-r--r-- | phpBB/includes/functions.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index e5e54e28d7..a152d9b620 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -2636,7 +2636,7 @@ function add_form_key($form_name, $template_variable_suffix = '') * @var string template_variable_suffix The string that is appended to template variable name * * @since 3.1.0-RC3 - * @change 3.1.11-RC1 Added template_variable_suffix + * @changed 3.1.11-RC1 Added template_variable_suffix */ $vars = array( 'form_name', @@ -2928,7 +2928,7 @@ function login_box($redirect = '', $l_explain = '', $l_success = '', $admin = fa * @var string redirect Redirect string * @var bool admin Is admin? * @since 3.1.0-RC5 - * @change 3.1.9-RC1 Removed undefined return variable + * @changed 3.1.9-RC1 Removed undefined return variable */ $vars = array('redirect', 'admin'); extract($phpbb_dispatcher->trigger_event('core.login_box_redirect', compact($vars))); @@ -4310,7 +4310,7 @@ function obtain_users_online_string($online_users, $item_id = 0, $item = 'forum' * session_forum_id * @var array sql_ary SQL query array to obtain users online data * @since 3.1.4-RC1 - * @change 3.1.7-RC1 Change sql query into array and adjust var accordingly. Allows extension authors the ability to adjust the sql_ary. + * @changed 3.1.7-RC1 Change sql query into array and adjust var accordingly. Allows extension authors the ability to adjust the sql_ary. */ $vars = array('online_users', 'item_id', 'item', 'sql_ary'); extract($phpbb_dispatcher->trigger_event('core.obtain_users_online_string_sql', compact($vars))); |