Revision 1013
Added by Matthias over 15 years ago
tool.php | ||
---|---|---|
61 | 61 |
} |
62 | 62 |
|
63 | 63 |
// Display form |
64 |
$persist_order = get_setting('mod_jsadmin_persist_order', true) ? 'checked="1"' : '';
|
|
65 |
$ajax_order_pages = get_setting('mod_jsadmin_ajax_order_pages', true) ? 'checked="1"' : '';
|
|
66 |
$ajax_order_sections = get_setting('mod_jsadmin_ajax_order_sections', true) ? 'checked="1"' : '';
|
|
64 |
$persist_order = get_setting('mod_jsadmin_persist_order', true) ? 'checked="checked"' : '';
|
|
65 |
$ajax_order_pages = get_setting('mod_jsadmin_ajax_order_pages', true) ? 'checked="checked"' : '';
|
|
66 |
$ajax_order_sections = get_setting('mod_jsadmin_ajax_order_sections', true) ? 'checked="checked"' : '';
|
|
67 | 67 |
?> |
68 | 68 |
<?php |
69 | 69 |
|
Also available in: Unified diff
Fixed admintool jsadmin to get XHTML valid output (Thanks to Luisehahne)