diff options
author | Jakub Senko <jakubsenko@gmail.com> | 2015-07-22 13:55:26 +0200 |
---|---|---|
committer | Jakub Senko <jakubsenko@gmail.com> | 2015-07-22 13:55:26 +0200 |
commit | c6a654e85939a187c5ea466c92d7332ebb70d9e0 (patch) | |
tree | cd7f6159004a90d8ee182ead511094d3f281f4b3 /phpBB/includes | |
parent | 5e3ebda0dab8f221c59ce5590ccfa4d27c09216f (diff) | |
download | forums-c6a654e85939a187c5ea466c92d7332ebb70d9e0.tar forums-c6a654e85939a187c5ea466c92d7332ebb70d9e0.tar.gz forums-c6a654e85939a187c5ea466c92d7332ebb70d9e0.tar.bz2 forums-c6a654e85939a187c5ea466c92d7332ebb70d9e0.tar.xz forums-c6a654e85939a187c5ea466c92d7332ebb70d9e0.zip |
[ticket/14043] Add dispatcher to globals, change @since value
PHPBB3-14043
Diffstat (limited to 'phpBB/includes')
-rw-r--r-- | phpBB/includes/functions.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index 533bab8936..b31a45276f 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -4766,7 +4766,7 @@ function phpbb_get_avatar($row, $alt, $ignore_config = false) { global $user, $config, $cache, $phpbb_root_path, $phpEx; global $request; - global $phpbb_container; + global $phpbb_container, $phpbb_dispatcher; if (!$config['allow_avatar'] && !$ignore_config) { @@ -4811,7 +4811,7 @@ function phpbb_get_avatar($row, $alt, $ignore_config = false) * * @event core.get_avatar_after * @var string html The HTML <img> tag of generated avatar - * @since 3.1.6 + * @since 3.1.6-RC1 */ $vars = array('html'); extract($phpbb_dispatcher->trigger_event('core.get_avatar_after', compact($vars))); |