Skip to content

Commit

Permalink
Added support for Igor
Browse files Browse the repository at this point in the history
Fix #140
  • Loading branch information
giterlizzi committed Sep 22, 2022
1 parent 02700c2 commit becbef9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion action.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ public function register(Doku_Event_Handler $controller)
{
$controller->register_hook('TOOLBAR_DEFINE', 'AFTER', $this, '_insert_button');
$controller->register_hook('HTML_SECEDIT_BUTTON', 'BEFORE', $this, '_secedit_button');
$controller->register_hook('HTML_EDIT_FORMSELECTION', 'BEFORE', $this, '_editform');
$controller->register_hook('HTML_EDIT_FORMSELECTION', 'BEFORE', $this, '_editform'); // deprecated
$controller->register_hook('EDIT_FORM_ADDTEXTAREA', 'BEFORE', $this, '_editform'); // replacement
}

/**
Expand Down
2 changes: 1 addition & 1 deletion plugin.info.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
base bootswrapper
author Giuseppe Di Terlizzi
email giuseppe.diterlizzi@gmail.com
date 2020-09-03
date 2022-09-22
name Bootstrap Wrapper Plugin
desc Bootstrap Wrapper for DokuWiki
url http://www.dokuwiki.org/plugin:bootswrapper

0 comments on commit becbef9

Please sign in to comment.