Revision 1013
Added by Matthias over 15 years ago
trunk/CHANGELOG | ||
---|---|---|
12 | 12 |
|
13 | 13 |
------------------------------------- 2.8.0 ------------------------------------- |
14 | 14 |
25-June-2009 Matthias Gallas |
15 |
# Fixed admintool jsadmin to get XHTML valid output (Thanks to Luisehahne) |
|
15 | 16 |
# Major fixes on backend to get XHTML valid output (Thanks to Luisehahne) |
16 | 17 |
+ Added option to use also MYSQL_ASSOC and MYSQL_NUM with mysql_fetch_array |
17 | 18 |
(Thanks to Luisehahne) |
trunk/wb/modules/jsadmin/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)