Now all the filters global config pages are valid XML. Related to MDL-7861

This commit is contained in:
stronk7
2007-01-13 20:15:09 +00:00
parent bf63e03ebe
commit dbaa905e10
3 changed files with 7 additions and 9 deletions
-2
View File
@@ -94,7 +94,5 @@
<?php
print_simple_box_end();
print_simple_box_end();
admin_externalpage_print_footer($adminroot);
?>
+1 -1
View File
@@ -25,4 +25,4 @@
<td align="center"><?php echo $txt->badwordsconfig; ?><br />
<i><?php echo $txt->badwordsdefault; ?></i></td>
</tr>
<table>
</table>
+6 -6
View File
@@ -31,31 +31,31 @@
</tr>
<tr valign="top">
<td align="right"><?php echo $txt->latexpreamble; ?></td>
<td><textarea type="text" name="filter_tex_latexpreamble" cols="60" rows="5"><?php echo "$CFG->filter_tex_latexpreamble"; ?></textarea></td>
<td><textarea type="text" name="filter_tex_latexpreamble" cols="60" rows="5"><?php p($CFG->filter_tex_latexpreamble); ?></textarea></td>
</tr>
<tr valign="top">
<td align="right"><?php echo $txt->backgroundcolour; ?></td>
<td><input type="text" name="filter_tex_latexbackground"
value="<?php echo $CFG->filter_tex_latexbackground; ?>"></td>
value="<?php p($CFG->filter_tex_latexbackground) ?>" /></td>
</tr>
<tr valign="top">
<td align="right"><?php echo $txt->density; ?></td>
<td><input type="text" name="filter_tex_density"
value="<?php echo $CFG->filter_tex_density; ?>"></td>
value="<?php p($CFG->filter_tex_density); ?>" /></td>
</tr>
<tr valign="top">
<td align="right"><?php echo $txt->pathlatex; ?></td>
<td><input type="text" name="filter_tex_pathlatex" size="50"
value="<?php echo $CFG->filter_tex_pathlatex; ?>"</td>
value="<?php p($CFG->filter_tex_pathlatex); ?>" /></td>
</tr>
<tr valign="top">
<td align="right"><?php echo $txt->pathdvips; ?></td>
<td><input type="text" name="filter_tex_pathdvips" size="50"
value="<?php echo $CFG->filter_tex_pathdvips; ?>"</td>
value="<?php p($CFG->filter_tex_pathdvips); ?>" /></td>
</tr>
<tr valign="top">
<td align="right"><?php echo $txt->pathconvert; ?></td>
<td><input type="text" name="filter_tex_pathconvert" size="50"
value="<?php echo $CFG->filter_tex_pathconvert; ?>"</td>
value="<?php p($CFG->filter_tex_pathconvert); ?>" /></td>
</tr>
</table>