[imp] Re: Filtering UI glitch

Dan Wilson dan at acucore.com
Wed Aug 13 11:16:07 PDT 2003


Here you go...

-Dan

> Message: 3
> Date: Tue, 12 Aug 2003 14:53:15 -0600
> From: Michael M Slusarz <slusarz at bigworm.colorado.edu>
> Subject: Re: [imp] Filtering UI glitch
> To: imp at lists.horde.org
> Message-ID: <1060721595.51c8143abc603 at bigworm.colorado.edu>
> Content-Type: text/plain; charset="ISO-8859-1"
>
> Quoting Dan Wilson <dan at acucore.com>:
>
> | Actually I can reproduce this.
>
> Patch from anyone that can reproduce this?
>
> michael
>
> ______________________________________________
> Michael Slusarz [slusarz at bigworm.colorado.edu]
> The University of Colorado at Boulder
-------------- next part --------------
Index: templates/rule/header.inc
===================================================================
RCS file: /repository/ingo/templates/rule/header.inc,v
retrieving revision 1.2
diff -u -r1.2 header.inc
--- templates/rule/header.inc	23 Jul 2003 23:03:24 -0000	1.2
+++ templates/rule/header.inc	13 Aug 2003 17:56:08 -0000
@@ -49,10 +49,10 @@
       <table cellpadding="2" cellspacing="0">
         <tr>
           <td>
-            <input id="all" onchange="document.rule.submit(); return true;" type="radio" name="combine" value="<?php echo INGO_STORAGE_COMBINE_ALL ?>"<?php echo ($rule['combine'] == INGO_STORAGE_COMBINE_ALL) ? ' checked="checked"' : '' ?>><label for="all"><?php echo _("All of the following") ?></label>
+            <input id="all" onclick="document.rule.submit(); return true;" type="radio" name="combine" value="<?php echo INGO_STORAGE_COMBINE_ALL ?>"<?php echo ($rule['combine'] == INGO_STORAGE_COMBINE_ALL) ? ' checked="checked"' : '' ?>><label for="all"><?php echo _("All of the following") ?></label>
           </td>
           <td>
-            <input id="any" onchange="document.rule.submit(); return true;" type="radio" name="combine" value="<?php echo INGO_STORAGE_COMBINE_ANY ?>"<?php echo ($rule['combine'] == INGO_STORAGE_COMBINE_ANY) ? ' checked="checked"' : '' ?>><label for="any"><?php echo _("Any of the following") ?></label>
+            <input id="any" onclick="document.rule.submit(); return true;" type="radio" name="combine" value="<?php echo INGO_STORAGE_COMBINE_ANY ?>"<?php echo ($rule['combine'] == INGO_STORAGE_COMBINE_ANY) ? ' checked="checked"' : '' ?>><label for="any"><?php echo _("Any of the following") ?></label>
           </td>
         </tr>
       </table>


More information about the imp mailing list