diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2012-07-30 16:35:01 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2012-08-01 10:18:56 +0200 |
commit | 4f13b049f813916e6393c8c4cc0227d3f52c2318 (patch) | |
tree | 8eb9b3992d37d375b20eb08153079131a7a20d09 | |
parent | 96f20160bcfa7a08870602b25fa528370f034128 (diff) | |
download | forums-4f13b049f813916e6393c8c4cc0227d3f52c2318.tar forums-4f13b049f813916e6393c8c4cc0227d3f52c2318.tar.gz forums-4f13b049f813916e6393c8c4cc0227d3f52c2318.tar.bz2 forums-4f13b049f813916e6393c8c4cc0227d3f52c2318.tar.xz forums-4f13b049f813916e6393c8c4cc0227d3f52c2318.zip |
[feature/php-events] Fix docs of core.display_custom_bbcodes
PHPBB3-9550
-rw-r--r-- | phpBB/includes/functions_display.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/phpBB/includes/functions_display.php b/phpBB/includes/functions_display.php index 807f5a2192..1e093e6811 100644 --- a/phpBB/includes/functions_display.php +++ b/phpBB/includes/functions_display.php @@ -931,6 +931,12 @@ function display_custom_bbcodes() } $db->sql_freeresult($result); + /** + * Display custom bbcodes + * + * @event core.display_custom_bbcodes + * @since 3.1-A1 + */ $phpbb_dispatcher->dispatch('core.display_custom_bbcodes'); } |