Fix typo "." instead of ";". selopts[-1] was concatenated with the string.
authorkink <kink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Sat, 21 May 2005 15:15:07 +0000 (15:15 +0000)
committerkink <kink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Sat, 21 May 2005 15:15:07 +0000 (15:15 +0000)
Initialize the array selopts.

git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@9432 7612ce4b-ef26-0410-bec9-ea0150e637f0

src/addrbook_search.php

index a1c0b7be3b7df331a15a80e058e9d4d3539e9503..05777b89e1f7c381350d88bcc4c723e51f398141 100644 (file)
@@ -221,8 +221,9 @@ if ($show == 'form' && empty($listall)) {
 
     /* List all backends to allow the user to choose where to search */
     if ($abook->numbackends > 1) {
-        echo '<strong>' . _("in") . '</strong>&nbsp;'."\n".
-             $selopts['-1'] = _("All address books");
+        echo '<strong>' . _("in") . '</strong>&nbsp;'."\n";
+        $selopts = array();
+        $selopts['-1'] = _("All address books");
 
         $ret = $abook->get_backend_list();
         while (list($undef,$v) = each($ret)) {
@@ -308,4 +309,4 @@ if ($show == 'form' && empty($listall)) {
 
 }
 ?>
-</body></html>
\ No newline at end of file
+</body></html>