We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 39b756c commit 0d11888Copy full SHA for 0d11888
2 files changed
action.php
@@ -22,7 +22,7 @@ class action_plugin_include extends DokuWiki_Action_Plugin {
22
/* @var helper_plugin_include $helper */
23
var $helper = null;
24
25
- function action_plugin_include() {
+ function __construct() {
26
$this->helper = plugin_load('helper', 'include');
27
}
28
helper.php
@@ -28,7 +28,7 @@ class helper_plugin_include extends DokuWiki_Plugin { // DokuWiki_Helper_Plugin
/**
29
* Constructor loads default config settings once
30
*/
31
- function helper_plugin_include() {
32
$this->defaults['noheader'] = $this->getConf('noheader');
33
$this->defaults['firstsec'] = $this->getConf('firstseconly');
34
$this->defaults['editbtn'] = $this->getConf('showeditbtn');
0 commit comments