From ae2e88bc0e0883b750fb614f3c95e7c3f6200b63 Mon Sep 17 00:00:00 2001
From: Aleksander Machniak <alec@alec.pl>
Date: Thu, 05 Jul 2012 09:43:18 -0400
Subject: [PATCH] Plugin API: Add 'unauthenticated' hook (#1488138)
---
index.php | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/index.php b/index.php
index d58947d..f676712 100644
--- a/index.php
+++ b/index.php
@@ -213,8 +213,10 @@
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 {
--
Gitblit v1.9.1