diff --git a/ChangeLog b/ChangeLog index cba4b17..b808b8b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Version 0.2.4-alpha + +Bug fixes: + +* extra unused template action removed + Version 0.2.3-alpha Bug fixes: diff --git a/Makefile b/Makefile index 76de3d8..c1155c7 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ plugin=Wiki -version=0.2.3 +version=0.2.4 all: @ echo "Build archive for plugin ${plugin} version=${version}" @ git archive HEAD --prefix=${plugin}/ --format=zip -o ${plugin}-${version}.zip diff --git a/Plugin.php b/Plugin.php index de5d141..42295ce 100644 --- a/Plugin.php +++ b/Plugin.php @@ -33,7 +33,6 @@ public function initialize() $this->route->addRoute('/wiki/project/:project_id/breakdown', 'WikiController', 'breakdown', 'wiki'); $this->template->hook->attach('template:project:dropdown', 'wiki:project/dropdown'); - $this->template->hook->attach('template:user:sidebar:actions', 'wiki:user/sidebar'); $this->hook->on('template:layout:css', array('template' => 'plugins/Wiki/Asset/css/wiki.css')); $this->hook->on('template:layout:js', array('template' => 'plugins/Wiki/Asset/Javascript/wiki.js'));