Skip to content

Commit

Permalink
fixed undefined constant warning DOKUWIKI_STARTED in action.php
Browse files Browse the repository at this point in the history
  • Loading branch information
turnermm committed Apr 25, 2018
1 parent 563ff71 commit 3f8db6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class action_plugin_block extends DokuWiki_Action_Plugin {
public function register(Doku_Event_Handler $controller) {

$controller->register_hook('AJAX_CALL_UNKNOWN', 'BEFORE', $this, 'handle_ajax_call_unknown');
$controller->register_hook(DOKUWIKI_STARTED, 'BEFORE', $this, 'handle_started');
$controller->register_hook('DOKUWIKI_STARTED', 'BEFORE', $this, 'handle_started');
}

/**
Expand Down

0 comments on commit 3f8db6a

Please sign in to comment.