summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-php/Horde_Auth/files/HK-GW-Auth-Special_user_login.patch')
-rw-r--r--dev-php/Horde_Auth/files/HK-GW-Auth-Special_user_login.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/dev-php/Horde_Auth/files/HK-GW-Auth-Special_user_login.patch b/dev-php/Horde_Auth/files/HK-GW-Auth-Special_user_login.patch
deleted file mode 100644
index 47014dd..0000000
--- a/dev-php/Horde_Auth/files/HK-GW-Auth-Special_user_login.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-diff -r cf94ea7d6215 framework/Auth/Auth/kolab.php
---- a/framework/Auth/Auth/kolab.php Mon Sep 22 15:16:08 2008 +0200
-+++ b/framework/Auth/Auth/kolab.php Mon Sep 22 17:53:35 2008 +0200
-@@ -154,7 +154,11 @@
- if (is_a($user, 'PEAR_Error')) {
- return $user;
- }
-- if (!is_a($user, 'Horde_Kolab_Server_Object_user')) {
-+
-+ global $conf;
-+
-+ if (empty($conf['kolab']['misc']['allow_special'])
-+ && !is_a($user, 'Horde_Kolab_Server_Object_user')) {
- return PEAR::raiseError(_('User is not a standard Kolab user.'));
- }
- $result = $user->getServer('imap');