Add Cancel button to HTML addressbook. This was even simpler than I thought.
authorkink <kink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Mon, 11 Apr 2005 18:36:41 +0000 (18:36 +0000)
committerkink <kink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Mon, 11 Apr 2005 18:36:41 +0000 (18:36 +0000)
Closes: #1180565

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

ChangeLog
src/addrbook_search_html.php

index a38166aeea4663056622793606ead70dc29d1333..bfff64da1a96d0d387d0806c6d15359a15ab946f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -310,6 +310,7 @@ Version 1.5.1 -- CVS
     (#764709).
   - If From: field is unset in an email, header object for from field is not
     correctly set, and generates an error on reply (#1179754).
+  - Add Cancel button to addressbook (#1180565).
   
 Version 1.5.0 - 2 February 2004
 -------------------------------
index 5a6a98340dbbdd56f59bfe8ba836d1f97781ff64..98cc26f3c8a19585a9977d72fdec4e1f90b92056 100644 (file)
@@ -157,7 +157,9 @@ if ($javascript_on) {
     echo html_tag( 'tr',
                 html_tag( 'td',
                         '<input type="submit" name="addr_search_done" value="' .
-                        _("Use Addresses") . '" />' ,
+                        _("Use Addresses") . '" /> ' .
+                       '<input type="submit" name="addr_search_cancel" value="' .
+                       _("Cancel") . '" />',
                 'center', '', 'colspan="'. $td_colspan .'"' )
             ) .
          '</table>' .
@@ -305,4 +307,4 @@ if ($addrquery == '' || sizeof($res) == 0) {
 }
 
 ?>
-</body></html>
\ No newline at end of file
+</body></html>