Skip to content

Commit

Permalink
feature 3094: redesign of search form - fix space lost in previous co…
Browse files Browse the repository at this point in the history
…mmit

git-svn-id: http://piwigo.org/svn/trunk@28746 68402e56-0260-453c-a942-63ccdbb3a9ee
  • Loading branch information
rvelices committed Jun 20, 2014
1 parent a61307e commit c703e2d
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions themes/default/template/search.tpl
Expand Up @@ -35,15 +35,15 @@ jQuery(document).ready(function() {
<p>
<input type="text" name="search_allwords">
<br>
<label><input type="radio" name="mode" value="AND" checked="checked">{'Search for all terms'|@translate}</label>
<label><input type="radio" name="mode" value="OR">{'Search for any term'|@translate}</label>
<label><input type="radio" name="mode" value="AND" checked="checked"> {'Search for all terms'|@translate}</label>
<label><input type="radio" name="mode" value="OR"> {'Search for any term'|@translate}</label>
</p>

<p>
<strong>{'Apply on properties'|translate}</strong><br>
<label><input type="checkbox" name="fields[]" value="name" checked="checked">{'Photo title'|translate}</label>
<label><input type="checkbox" name="fields[]" value="comment" checked="checked">{'Photo description'|translate}</label>
<label><input type="checkbox" name="fields[]" value="file" checked="checked">{'File name'|translate}</label>
<label><input type="checkbox" name="fields[]" value="name" checked="checked"> {'Photo title'|translate}</label>
<label><input type="checkbox" name="fields[]" value="comment" checked="checked"> {'Photo description'|translate}</label>
<label><input type="checkbox" name="fields[]" value="file" checked="checked"> {'File name'|translate}</label>
</p>

</fieldset>
Expand Down Expand Up @@ -81,10 +81,10 @@ jQuery(document).ready(function() {
<ul>
<li><label>{'Kind of date'|@translate}</label></li>
<li><label>
<input type="radio" name="date_type" value="date_creation" checked="checked">{'Creation date'|@translate}
<input type="radio" name="date_type" value="date_creation" checked="checked"> {'Creation date'|@translate}
</label></li>
<li><label>
<input type="radio" name="date_type" value="date_available">{'Post date'|@translate}
<input type="radio" name="date_type" value="date_available"> {'Post date'|@translate}
</label></li>
</ul>
<ul>
Expand Down Expand Up @@ -133,7 +133,7 @@ jQuery(document).ready(function() {
<select id="categories" name="cat[]" multiple>
{html_options options=$category_options selected=$category_options_selected}
</select>
<label><input type="checkbox" name="subcats-included" value="1" checked="checked">{'Search in sub-albums'|@translate}</label>
<label><input type="checkbox" name="subcats-included" value="1" checked="checked"> {'Search in sub-albums'|@translate}</label>
</p>
</fieldset>
<p>
Expand Down

0 comments on commit c703e2d

Please sign in to comment.