summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2012-07-05 15:42:33 +0200
committerAleksander Machniak <alec@alec.pl>2012-07-05 15:43:18 +0200
commitae2e88bc0e0883b750fb614f3c95e7c3f6200b63 (patch)
treef4bc500387772e48929a99157b9be097d3124e6f
parent2e32add616487b66c902e1607e083b749792cdbd (diff)
Plugin API: Add 'unauthenticated' hook (#1488138)
-rw-r--r--CHANGELOG1
-rw-r--r--index.php6
2 files changed, 5 insertions, 2 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 7e298fbe7..268baa7e9 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,6 +1,7 @@
CHANGELOG Roundcube Webmail
===========================
+- Plugin API: Add 'unauthenticated' hook (#1488138)
- Show explicit error message when provided hostname is invalid (#1488550)
- Fix wrong compose screen elements focus in IE9 (#1488541)
- Fix fatal error when date.timezone isn't set (#1488546)
diff --git a/index.php b/index.php
index d58947d32..f67671220 100644
--- a/index.php
+++ b/index.php
@@ -213,8 +213,10 @@ if (empty($RCMAIL->user->ID)) {
if ($session_error || $_REQUEST['_err'] == 'session')
$OUTPUT->show_message('sessionerror', 'error', null, true, -1);
- $RCMAIL->set_task('login');
- $OUTPUT->send('login');
+ $plugin = $RCMAIL->plugins->exec_hook('unauthenticated', array('task' => 'login', 'error' => $session_error));
+
+ $RCMAIL->set_task($plugin['task']);
+ $OUTPUT->send($plugin['task']);
}
// CSRF prevention
else {