From c1df2653a8ad373058aabb5d6e8902ed1a32237e Mon Sep 17 00:00:00 2001 From: "green-ponies (jgen)" Date: Sun, 25 Sep 2011 14:16:20 -0400 Subject: [PATCH] Cleaned up the comments a bit. --- core/page.class.php | 2 +- ext/setup/main.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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: ");