Skip to content

Commit ad94f0e

Browse files
INT-18912: Fix placeholder strings in Snap that do not accept spaces
1 parent 3cd9c9f commit ad94f0e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

templates/big_search_form.mustache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@
162162
<tr>
163163
<td colspan="2" class="submit">
164164
<div class="text-center">
165-
<input type="submit" value={{#cleanstr}}searchforums, hsuforum{{/cleanstr}}>
165+
<input type="submit" value="{{#cleanstr}}searchforums, hsuforum{{/cleanstr}}">
166166
</div>
167167
</td>
168168
</tr>

templates/quick_search_form.mustache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<label class="accesshide" for="search">{{#str}}search, hsuforum{{/str}}</label>
99
<input id="search" name="search" type="text" size="18" value="{{query}}">
1010
<label class="accesshide" for="searchforums">{{#str}}searchforums, hsuforum{{/str}}</label>
11-
<input id="searchforums" type="submit" class="btn btn-secondary" value={{#cleanstr}}searchforums, hsuforum{{/cleanstr}}>
11+
<input id="searchforums" type="submit" class="btn btn-secondary" value="{{#cleanstr}}searchforums, hsuforum{{/cleanstr}}">
1212
</fieldset>
1313
</form>
1414
</div>

0 commit comments

Comments
 (0)