Skip to content

Commit

Permalink
Merging changes from MOODLE_14_STABLE
Browse files Browse the repository at this point in the history
  • Loading branch information
julmis committed Aug 26, 2004
1 parent 5586395 commit 5f00462
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions admin/editor.html
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
<tr> <tr>
<td align="right" valign="top"><?php print_string("editorcleanonpaste");?>:</td> <td align="right" valign="top"><?php print_string("editorcleanonpaste");?>:</td>
<td valign="top"><select name="killword"> <td valign="top"><select name="killword">
<option value="1"<?php print(!$CFG->editorkillword)?"":" selected=\"selected\"";?>>Yes</option> <option value="1"<?php print(!$CFG->editorkillword)?"":" selected=\"selected\"";?>><?php print_string("yes");?></option>
<option value="0"<?php print(!$CFG->editorkillword)?" selected=\"selected\"":"";?>>No</option> <option value="0"<?php print(!$CFG->editorkillword)?" selected=\"selected\"":"";?>><?php print_string("no");?></option>
</select></td> </select></td>
<td valign="top"><?php print_string("edhelpcleanword");?></td> <td valign="top"><?php print_string("edhelpcleanword");?></td>
</tr> </tr>
Expand All @@ -33,8 +33,8 @@
$CFG->editorspelling = false; $CFG->editorspelling = false;
} }
?>> ?>>
<option value="1"<?php print(!$CFG->editorspelling)?"":" selected=\"selected\"";?>>Yes</option> <option value="1"<?php print(!$CFG->editorspelling)?"":" selected=\"selected\"";?>><?php print_string("yes");?></option>
<option value="0"<?php print(!$CFG->editorspelling)?" selected=\"selected\"":"";?>>No</option> <option value="0"<?php print(!$CFG->editorspelling)?" selected=\"selected\"":"";?>><?php print_string("no");?></option>
</select></td> </select></td>
<td valign="top"><?php print_string("edhelpenablespelling");?></td> <td valign="top"><?php print_string("edhelpenablespelling");?></td>
</tr> </tr>
Expand Down

0 comments on commit 5f00462

Please sign in to comment.