diff options
author | Andreas Gohr <andi@splitbrain.org> | 2018-06-15 17:35:53 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2019-04-20 21:48:53 +0200 |
commit | cbb44eabe033d70affb048ec0daf4e579e09dd20 (patch) | |
tree | 97a8a28e9cabd7aa4e54253487f071d87f840c87 /inc/actions.php | |
parent | e1d9dcc8b460b6f029ac9c8d5d3b8d23b6e73402 (diff) | |
download | dokuwiki-cbb44eabe033d70affb048ec0daf4e579e09dd20.tar.gz dokuwiki-cbb44eabe033d70affb048ec0daf4e579e09dd20.zip |
deprecated trigger_event() in favor of a static method on Event
Diffstat (limited to 'inc/actions.php')
-rw-r--r-- | inc/actions.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/inc/actions.php b/inc/actions.php index 88596bbe8..4ea529dcd 100644 --- a/inc/actions.php +++ b/inc/actions.php @@ -6,6 +6,8 @@ * @author Andreas Gohr <andi@splitbrain.org> */ +use dokuwiki\Extension\Event; + /** * All action processing starts here */ @@ -14,7 +16,7 @@ function act_dispatch(){ $router = \dokuwiki\ActionRouter::getInstance(true); $headers = array('Content-Type: text/html; charset=utf-8'); - trigger_event('ACTION_HEADERS_SEND',$headers,'act_sendheaders'); + Event::createAndTrigger('ACTION_HEADERS_SEND',$headers,'act_sendheaders'); // clear internal variables unset($router); |