aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/inc/auth.php
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2018-06-15 17:35:53 +0200
committerAndreas Gohr <andi@splitbrain.org>2019-04-20 21:48:53 +0200
commitcbb44eabe033d70affb048ec0daf4e579e09dd20 (patch)
tree97a8a28e9cabd7aa4e54253487f071d87f840c87 /inc/auth.php
parente1d9dcc8b460b6f029ac9c8d5d3b8d23b6e73402 (diff)
downloaddokuwiki-cbb44eabe033d70affb048ec0daf4e579e09dd20.tar.gz
dokuwiki-cbb44eabe033d70affb048ec0daf4e579e09dd20.zip
deprecated trigger_event() in favor of a static method on Event
Diffstat (limited to 'inc/auth.php')
-rw-r--r--inc/auth.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/auth.php b/inc/auth.php
index 0cd03469d..9cb04fc44 100644
--- a/inc/auth.php
+++ b/inc/auth.php
@@ -108,7 +108,7 @@ function auth_setup() {
'sticky' => $INPUT->bool('r'),
'silent' => $INPUT->bool('http_credentials')
);
- trigger_event('AUTH_LOGIN_CHECK', $evdata, 'auth_login_wrapper');
+ Event::createAndTrigger('AUTH_LOGIN_CHECK', $evdata, 'auth_login_wrapper');
}
//load ACL into a global array XXX
@@ -583,7 +583,7 @@ function auth_aclcheck($id, $user, $groups) {
'groups' => $groups
);
- return trigger_event('AUTH_ACL_CHECK', $data, 'auth_aclcheck_cb');
+ return Event::createAndTrigger('AUTH_ACL_CHECK', $data, 'auth_aclcheck_cb');
}
/**