Bug 6328 : Previous patches broke templates, this is fixing them

Signed-off-by: Katrin Fischer <Katrin.Fischer.83@web.de>
Fixes xt/tt_valid.t
Checked the member entry page, didn't find any problems.
This commit is contained in:
Chris Cormack 2011-11-27 20:30:49 +13:00 committed by Paul Poulain
parent 1f6ae97375
commit 3e05393dd8

View file

@ -1145,7 +1145,11 @@
<br />
<label for="datedebarred" class="radio">until:</label>
<input type="text" name="datedebarred" id="debarred" class="debarred" value="[% datedebarred %]"[% IF ( opduplicate ) %] onclick="this.value=''"[% END %] />
[% IF opduplicate %]
<input type="text" name="datedebarred" id="debarred" class="debarred" value="[% datedebarred %]" onclick="this.value=''" />
[% ELSE %]
<input type="text" name="datedebarred" id="debarred" class="debarred" value="[% datedebarred %]" />
[% END %]
<img src="[% themelang %]/lib/calendar/cal.gif" id="debarred_button" alt="Show Calendar" />
<script language="JavaScript" type="text/javascript">
Calendar.setup(
@ -1158,7 +1162,11 @@
</script>
<br />
<label for="debarredcomment" class="radio">Comment:</label>
<textarea id="debarredcomment" name="debarredcomment" cols="55" rows="3" [% IF ( opduplicate ) %] onclick="this.value=''"[% END %]>[% debarredcomment %]</textarea>
[% IF ( opduplicate ) %]
<textarea id="debarredcomment" name="debarredcomment" cols="55" rows="3" onclick="this.value=''">[% debarredcomment %]</textarea>
[% ELSE %]
<textarea id="debarredcomment" name="debarredcomment" cols="55" rows="3" ">[% debarredcomment %]</textarea>
[% END %]
</li>
</ol>