diff --git a/core/page.class.php b/core/page.class.php index f15b31c5..dde20a97 100644 --- a/core/page.class.php +++ b/core/page.class.php @@ -263,7 +263,7 @@ class Page { * PLEASE: Ensure that you test your site out throughly after enabling this module! * Either that, or don't use this module unless you are sure of what it is doing. * - * TODO: Before performing the regex's, compute the md5 of the CSS files and store somewhere to check later. (performance reasons.) + * TODO: For performance reasons: Before performing the regex's, compute the md5 of the CSS & JS files and store somewhere to check later. * * @return * This function returns FALSE if it failed to cache the files, diff --git a/ext/setup/main.php b/ext/setup/main.php index d972ee99..adf4bb64 100644 --- a/ext/setup/main.php +++ b/ext/setup/main.php @@ -287,9 +287,9 @@ class Setup extends SimpleExtension { $sb->add_text_option("api_recaptcha_pubkey", "
Public key: "); $event->panel->add_block($sb); - $sb = new SetupBlock("Automatic CSS & JS Caching"); + $sb = new SetupBlock("Automatic Caching of CSS & JS"); $sb->add_text_option("autocache_location", "Location: "); - $sb->add_label("
Needs to be writeable by the webserver."); + $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: ");