diff options
Diffstat (limited to 'inc/subscription.php')
-rw-r--r-- | inc/subscription.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/inc/subscription.php b/inc/subscription.php index 80b301ed5..d68801704 100644 --- a/inc/subscription.php +++ b/inc/subscription.php @@ -1,6 +1,7 @@ <?php use dokuwiki\ChangeLog\PageChangeLog; +use dokuwiki\Extension\AuthPlugin; /** * Class for handling (email) subscriptions @@ -293,7 +294,7 @@ class Subscription { public function send_bulk($page) { if(!$this->isenabled()) return 0; - /** @var DokuWiki_Auth_Plugin $auth */ + /** @var \dokuwiki\Extension\AuthPlugin $auth */ global $auth; global $conf; global $USERINFO; @@ -663,7 +664,7 @@ class Subscription { public function notifyaddresses(&$data) { if(!$this->isenabled()) return; - /** @var DokuWiki_Auth_Plugin $auth */ + /** @var \dokuwiki\Extension\AuthPlugin $auth */ global $auth; global $conf; /** @var Input $INPUT */ |