From 1c0ce1fe522c290ef59c45226d9f1f9ea1d5ec20 Mon Sep 17 00:00:00 2001
From: Aleksander Machniak <alec@alec.pl>
Date: Thu, 05 Jul 2012 09:42:33 -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 54b87ce..ef5733a 100644
--- a/index.php
+++ b/index.php
@@ -211,8 +211,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