script creates two frames. there is no need to display same error in both.
authortokul <tokul@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Sun, 20 Mar 2005 10:13:01 +0000 (10:13 +0000)
committertokul <tokul@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Sun, 20 Mar 2005 10:13:01 +0000 (10:13 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@9084 7612ce4b-ef26-0410-bec9-ea0150e637f0

src/addrbook_search.php

index e7947ab79b8ec448e24a9fdceaf87a20d323e419..a1c0b7be3b7df331a15a80e058e9d4d3539e9503 100644 (file)
@@ -205,8 +205,9 @@ if (empty($query) && empty($show) && empty($listall)) {
     exit;
 }
 
-/* Initialize addressbook */
-$abook = addressbook_init();
+/* Initialize addressbook, show init errors only in bottom frame */
+$showerr=($show=='form' ? false : true);
+$abook = addressbook_init($showerr);
 
 /* Create search form */
 if ($show == 'form' && empty($listall)) {