summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2011-05-13 11:13:16 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2011-05-13 11:13:16 +0000
commit5b214603698d311edf987bb767f86b058e538dc6 (patch)
tree82f05f779dd6e70869bd4831f7655832f0a2c28a
parentbcb7cca34758b2f33957d02a0e9649bbb1ed7f58 (diff)
- Fix help plugin after change in the API making 'index' action to be the default
git-svn-id: https://svn.roundcube.net/trunk@4759 208e9e7b-5314-0410-a742-e7e81cd9613c
-rw-r--r--plugins/help/help.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/help/help.php b/plugins/help/help.php
index 0c70b3a69..ccf80820b 100644
--- a/plugins/help/help.php
+++ b/plugins/help/help.php
@@ -29,7 +29,7 @@ class help extends rcube_plugin
$this->register_task('help');
// register actions
- $this->register_action('', array($this, 'action'));
+ $this->register_action('index', array($this, 'action'));
$this->register_action('about', array($this, 'action'));
$this->register_action('license', array($this, 'action'));