diff --git a/ext/setup/main.php b/ext/setup/main.php
index 8b1f0eba..e53061b1 100644
--- a/ext/setup/main.php
+++ b/ext/setup/main.php
@@ -293,12 +293,11 @@ class Setup extends SimpleExtension {
checkbox_css = document.getElementById('autocache_min_css');
checkbox_js = document.getElementById('autocache_min_js');
- checkbox_css.disabled = true;
- checkbox_js.disabled = true;
-
$(document).ready(function() {
checkbox_css.disabled = true;
+ checkbox_css.checked = false;
checkbox_js.disabled = true;
+ checkbox_js.checked = false;
});
";
@@ -307,9 +306,9 @@ class Setup extends SimpleExtension {
$sb->add_label("
This location needs to be writeable by the webserver.");
$sb->add_bool_option("autocache_css", "
Automatic caching of CSS: ");
$sb->add_bool_option("autocache_js", "
Automatic caching of JS: ");
- $sb->add_label("Minifying currently not supported.$minifyscript");
$sb->add_bool_option("autocache_min_css", "
Minimize CSS files: ");
- $sb->add_bool_option("autocache_min_js", "
Minimize JS files: ");
+ $sb->add_bool_option("autocache_min_js", "
Minimize JS files: ");
+ $sb->add_label("
Minifying currently not supported.$minifyscript");
$event->panel->add_block($sb);
}