Update of /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/flag
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18707/fr/default/flag
Modified Files:
list.html.tmpl
Log Message:
2.18rc3 -> 2.18 (2/4)
Index: list.html.tmpl
===================================================================
RCS file: /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/flag/list.html.tmpl,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** list.html.tmpl 1 Nov 2004 10:31:44 -0000 1.3
--- list.html.tmpl 1 Feb 2005 10:15:21 -0000 1.4
***************
*** 22,25 ****
--- 22,26 ----
<script type="text/javascript">
<!--
+ var stored_onload = window.onload;
// Enables or disables a requestee field depending on whether or not
// the user is requesting the corresponding flag.
***************
*** 57,60 ****
--- 58,64 ----
}
}
+ if (stored_onload) {
+ stored_onload();
+ }
}
window.onload = disableRequesteeFields;
***************
*** 101,105 ****
<option value="+" [% "selected" IF flag.status == "+" %]>+</option>
<option value="-" [% "selected" IF flag.status == "-" %]>-</option>
! [% IF type.is_requestable %]
<option value="?" [% "selected" IF flag.status == "?" %]>?</option>
[% END %]
--- 105,109 ----
<option value="+" [% "selected" IF flag.status == "+" %]>+</option>
<option value="-" [% "selected" IF flag.status == "-" %]>-</option>
! [% IF type.is_requestable || flag.status == "?" %]
<option value="?" [% "selected" IF flag.status == "?" %]>?</option>
[% END %]
|