From e1eafd03a2e86e1513c4ab2287ac7ba2417ff761 Mon Sep 17 00:00:00 2001
From: thomascube <thomas@roundcube.net>
Date: Thu, 04 Sep 2008 06:05:35 -0400
Subject: [PATCH] Always list all address sources

---
 program/steps/addressbook/func.inc |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/program/steps/addressbook/func.inc b/program/steps/addressbook/func.inc
index c4fbab2..51a45f9 100644
--- a/program/steps/addressbook/func.inc
+++ b/program/steps/addressbook/func.inc
@@ -43,8 +43,8 @@
 if (strtolower($CONFIG['address_book_type']) != 'ldap') {
   // We are using the DB address book, add it.
   $js_list = array("0" => array('id' => 0, 'readonly' => false));
-} // end if
-else if (!empty($CONFIG['ldap_public'])) {
+}
+if (is_array($CONFIG['ldap_public'])) {
   foreach ($CONFIG['ldap_public'] as $id => $prop)
     $js_list[$id] = array('id' => $id, 'readonly' => !$prop['writable']);
 }

--
Gitblit v1.9.1