Changed multiple usages of <%= to <%: where appropriate

--HG--
branch : dev
This commit is contained in:
Phil Haack
2010-06-08 23:42:20 -07:00
parent 7108d92147
commit afb6afe309
140 changed files with 762 additions and 762 deletions

View File

@@ -3,8 +3,8 @@
<fieldset>
<legend>Sandbox</legend>
<div>
<%=Html.EditorFor(m => m.AllowAnonymousEdits) %>
<label class="forcheckbox" for="SandboxSettings_AllowAnonymousEdits"><%=_Encoded("Anyone can create and edit pages") %></label>
<%=Html.ValidationMessage("AllowAnonymousEdits", "*") %>
<%: Html.EditorFor(m => m.AllowAnonymousEdits) %>
<label class="forcheckbox" for="SandboxSettings_AllowAnonymousEdits"><%: T("Anyone can create and edit pages") %></label>
<%: Html.ValidationMessage("AllowAnonymousEdits", "*") %>
</div>
</fieldset>