diff --git a/ext/setup/main.php b/ext/setup/main.php
index e82583f5..b20e8b45 100644
--- a/ext/setup/main.php
+++ b/ext/setup/main.php
@@ -281,27 +281,16 @@ class Setup extends Extension {
$event->panel->add_block($sb);
- // Options for Automatic Caching & Minifying
- $minifyscript = "";
-
$sb = new SetupBlock("Automatic Caching of CSS & JS");
- $sb->add_text_option("autocache_location", "Location: ");
- $sb->add_label("
This location needs to be writeable by the webserver.");
- $sb->add_bool_option("autocache_css", "
Automatic caching of CSS: ");
+ // the default is fine for just about everyone
+ //$sb->add_text_option("autocache_location", "Location: ");
+ //$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_bool_option("autocache_min_css", "
Minimize CSS files: ");
- $sb->add_bool_option("autocache_min_js", "
Minimize JS files: ");
- $sb->add_label("
Minifying currently not supported.$minifyscript");
+ // if the option does nothing, there's no point showing a
+ // "hey look, nothing!" message...
+ //$sb->add_bool_option("autocache_min_css", "
Minimize CSS files: ");
+ //$sb->add_bool_option("autocache_min_js", "
Minimize JS files: ");
$event->panel->add_block($sb);
}