Bug 35240: Add missing IDs to input
1. Tools -> Rotating collections -> Edit collection 2. Use browser dev tools to notice that the inputs don't have matching IDs 3. Apply patch 4. Do step 2 again and notice IDs are no longer missing. 5. Sign off :) Signed-off-by: Owen Leonard <oleonard@myacpl.org> Signed-off-by: Nick Clemens <nick@bywatersolutions.com> Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de> (cherry picked from commit21a66bf17c
) Signed-off-by: Lucas Gass <lucas@bywatersolutions.com> (cherry picked from commit27cbe1d0cf
) Signed-off-by: Fridolin Somers <fridolin.somers@biblibre.com> Signed-off-by: wainuiwitikapark <wainuiwitikapark@catalyst.net.nz>
This commit is contained in:
parent
2152384062
commit
87a5eb7f17
1 changed files with 4 additions and 4 deletions
|
@ -128,19 +128,19 @@
|
|||
<li>
|
||||
<label class="required" for="title">Title: </label>
|
||||
[% IF ( editColTitle ) %]
|
||||
<input type="text" name="title" value="[% editColTitle | html %]" required="required" />
|
||||
<input id="title" type="text" name="title" value="[% editColTitle | html %]" required="required" />
|
||||
<span class="required">Required</span>
|
||||
[% ELSE %]
|
||||
<input type="text" name="title" required="required" />
|
||||
<input id="title" type="text" name="title" required="required" />
|
||||
<span class="required">Required</span>
|
||||
[% END %]
|
||||
</li>
|
||||
<li>
|
||||
<label for="description">Description: </label>
|
||||
[% IF (editColDescription ) %]
|
||||
<input type="text" size="50" name="description" value="[% editColDescription | html %]" />
|
||||
<input id="description" type="text" size="50" name="description" value="[% editColDescription | html %]" />
|
||||
[% ELSE %]
|
||||
<input type="text" size="50" name="description" />
|
||||
<input id="description" type="text" size="50" name="description" />
|
||||
[% END %]
|
||||
</li>
|
||||
</ol>
|
||||
|
|
Loading…
Reference in a new issue