anoter well-formedness tweak in edit_web.rhtml
This commit is contained in:
parent
8d8deb8e76
commit
40ed02c771
1 changed files with 5 additions and 5 deletions
|
@ -47,14 +47,14 @@
|
||||||
|
|
||||||
|
|
||||||
<small>
|
<small>
|
||||||
<input type="checkbox" name="safe_mode"<%= " CHECKED" if @web.safe_mode %> /> Safe mode
|
<input type="checkbox" name="safe_mode" <%= 'checked="on"' if @web.safe_mode %> /> Safe mode
|
||||||
|
|
||||||
<input type="checkbox" name="brackets_only"<%= " CHECKED" if @web.brackets_only %> />
|
<input type="checkbox" name="brackets_only" <%= 'checked="on"' if @web.brackets_only %> />
|
||||||
Brackets only
|
Brackets only
|
||||||
|
|
||||||
<input type="checkbox" name="count_pages"<%= " CHECKED" if @web.count_pages %> /> Count pages
|
<input type="checkbox" name="count_pages" <%= 'checked="on"' if @web.count_pages %> /> Count pages
|
||||||
|
|
||||||
<input type="checkbox" name="allow_uploads"<%= " CHECKED" if @web.allow_uploads %> /> Allow uploads
|
<input type="checkbox" name="allow_uploads" <%= 'checked="on"' if @web.allow_uploads %> /> Allow uploads
|
||||||
</small>
|
</small>
|
||||||
|
|
||||||
<textarea id="additionalStyle"
|
<textarea id="additionalStyle"
|
||||||
|
@ -83,7 +83,7 @@
|
||||||
The published version is accessible through URLs like /wiki/published/HomePage.
|
The published version is accessible through URLs like /wiki/published/HomePage.
|
||||||
</div>
|
</div>
|
||||||
<div class="inputBox">
|
<div class="inputBox">
|
||||||
<input type="checkbox" name="published"<%= " CHECKED" if @web.published %> /> Publish this web
|
<input type="checkbox" name="published" <%= 'checked="on"' if @web.published %> /> Publish this web
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<p align="right">
|
<p align="right">
|
||||||
|
|
Loading…
Reference in a new issue