X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=blobdiff_plain;f=src%2Faddrbook_search.php;h=a1c0b7be3b7df331a15a80e058e9d4d3539e9503;hp=2fbd9346b660fe680d9f2be3ce42da421ec5335b;hb=6dda64534206bf0aa35c57e826605573809176e7;hpb=c44d8967a34d9683380c74063adb48323b759657 diff --git a/src/addrbook_search.php b/src/addrbook_search.php index 2fbd9346..a1c0b7be 100644 --- a/src/addrbook_search.php +++ b/src/addrbook_search.php @@ -3,7 +3,7 @@ /** * addrbook_search.php * - * Copyright (c) 1999-2004 The SquirrelMail Project Team + * Copyright (c) 1999-2005 The SquirrelMail Project Team * Licensed under the GNU GPL. For full terms see the file COPYING. * * Handle addressbook searching in the popup window. @@ -12,8 +12,9 @@ * addrbook_search_html.html -- If you change one, * change the other one too! * - * @version $Id$ + * @version $Id$ * @package squirrelmail + * @subpackage addressbook */ /** @@ -46,7 +47,7 @@ sqgetGlobalVar('backend', $backend, SQ_POST); */ function insert_javascript() { ?> - +// --> \n"; - + while (list($undef, $row) = each($res)) { - $tr_bgcolor = ''; $email = htmlspecialchars(addcslashes(AddressBook::full_address($row), "'"), ENT_QUOTES); - if ($line % 2) { $tr_bgcolor = $color[0]; } - echo html_tag( 'tr', '', '', $tr_bgcolor, 'nowrap' ) . + if ($line % 2) { + $tr_bgcolor = $color[12]; + } else { + $tr_bgcolor = $color[4]; + } + echo html_tag( 'tr', '', '', $tr_bgcolor, 'style="white-space: nowrap;"' ) . html_tag( 'td', - 'To | " . - 'Cc | " . - 'Bcc", - 'center', '', 'valign="top" width="5%" nowrap' ) . - html_tag( 'td', ' ' . htmlspecialchars($row['name']), 'left', '', 'valign="top" nowrap' ) . + '"._("To")." | " . + '"._("Cc")." | " . + '"._("Bcc")."", + 'center', '', 'valign="top" width="5%" style="white-space: nowrap;"' ) . + html_tag( 'td', ' ' . htmlspecialchars($row['name']), 'left', '', 'valign="top" style="white-space: nowrap;"' ) . html_tag( 'td', ' ' . '" . htmlspecialchars($row['email']) . '' + "'" . $email . "');\">" . htmlspecialchars($row['email']) . '' , 'left', '', 'valign="top"' ) . - html_tag( 'td', htmlspecialchars($row['label']), 'left', '', 'valign="top" nowrap' ); + html_tag( 'td', htmlspecialchars($row['label']), 'left', '', 'valign="top" style="white-space: nowrap;"' ); if ($includesource) { - echo html_tag( 'td', ' ' . $row['source'], 'left', '', 'valign="top" nowrap' ); + echo html_tag( 'td', ' ' . $row['source'], 'left', '', 'valign="top" style="white-space: nowrap;"' ); } echo "\n"; @@ -165,12 +169,16 @@ function display_result($res, $includesource = true) { } /* ================= End of functions ================= */ - + require_once('../functions/strings.php'); require_once('../functions/addressbook.php'); - + displayHtmlHeader(); - + +/** set correct value of $default_charset */ +global $default_charset; +set_my_charset(); + /* Initialize vars */ if (!isset($query)) { $query = ''; } if (!isset($show)) { $show = ''; } @@ -178,61 +186,62 @@ if (!isset($backend)) { $backend = ''; } /* Choose correct colors for top and bottom frame */ if ($show == 'form' && !isset($listall)) { - echo ''; } else { - echo '\n"; + echo '\n"; } /* Empty search */ if (empty($query) && empty($show) && empty($listall)) { - echo html_tag( 'p', '
' . + echo html_tag( 'p', '
' . _("No persons matching your search were found"), 'center' ) . - "\n\n", + "\n\n"; 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)) { - echo '
' . "\n" . + echo '' . "\n" . html_tag( 'table', '', '', '', 'border="0" width="100%" height="100%"' ) . html_tag( 'tr' ) . - html_tag( 'td', ' ' . _("Search for") . "\n", 'left', '', 'nowrap valign="middle" width="10%"' ) . + html_tag( 'td', ' ' . _("Search for") . "\n", 'left', '', 'style="white-space: nowrap;" valign="middle" width="10%"' ) . html_tag( 'td', '', 'left', '', '' ) . - addInput('query', $query, 28); + addInput('query', $query, 28); /* List all backends to allow the user to choose where to search */ if ($abook->numbackends > 1) { - echo '' . _("in") . ' '."\n". - $selopts['-1'] = _("All address books"); - + echo '' . _("in") . ' '."\n". + $selopts['-1'] = _("All address books"); + $ret = $abook->get_backend_list(); while (list($undef,$v) = each($ret)) { $selopts[$v->bnum] = $v->sname; } - echo addSelect('backend', $selopts, '-1', TRUE); + echo addSelect('backend', $selopts, '-1', TRUE); } else { echo addHidden('backend', '-1'); } - + echo '' . html_tag( 'tr', html_tag( 'td', '', 'left' ) . html_tag( 'td', - '' . - ' | ' . "\n" . - ' | ' . "\n" , + '' . + ' | ' . "\n" . + ' | ' . "\n" , 'left' ) ) . '
' . "\n"; @@ -269,36 +278,34 @@ if ($show == 'form' && empty($listall)) { /* Do the search */ if (!empty($query)) { - + if($backend == -1) { $res = $abook->s_search($query); } else { $res = $abook->s_search($query, $backend); } - + if (!is_array($res)) { - echo html_tag( 'p', '
' . + echo html_tag( 'p', '
' . _("Your search failed with the following error(s)") . - ':
' . $abook->error . "
\n" , + ':
' . $abook->error . "
\n" , 'center' ) . - "\n\n"; + "\n\n"; exit; } - + if (sizeof($res) == 0) { - echo html_tag( 'p', '
' . + echo html_tag( 'p', '
' . _("No persons matching your search were found") . "\n" , 'center' ) . - "\n\n"; + "\n\n"; exit; } - + display_result($res); } } - -} -echo "\n"; - +} ?> + \ No newline at end of file