mirror of
https://github.com/moodle/moodle.git
synced 2025-08-05 00:46:50 +02:00
14 lines
435 B
HTML
14 lines
435 B
HTML
<?php
|
|
// check the default settings
|
|
require_once "defaultsettings.php";
|
|
|
|
?>
|
|
|
|
<table cellpadding="9" cellspacing="0">
|
|
<tr valign="top">
|
|
<td align="right"><?php print_string('multilangforceold', 'admin'); ?></td>
|
|
<td><?php choose_from_menu(array(get_String('no'), get_String('yes')), 'filter_multilang_force_old',
|
|
$CFG->filter_multilang_force_old, ''); ?></td>
|
|
<td />
|
|
</tr>
|
|
</table>
|