diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-12-29 19:49:11 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-12-29 19:49:11 +0000 |
commit | 21a0e8b904274aa3f31c60b4b4ec31f52f248ded (patch) | |
tree | 5a9e18f2c804bedee031646e751f6e6371eb6b8d /modules/system/system.module | |
parent | be2f4058189a54fb2bd1ad8309efa8d75d297b81 (diff) | |
download | brdo-21a0e8b904274aa3f31c60b4b4ec31f52f248ded.tar.gz brdo-21a0e8b904274aa3f31c60b4b4ec31f52f248ded.tar.bz2 |
- Updated code to use new semantics of url() and l().
Diffstat (limited to 'modules/system/system.module')
-rw-r--r-- | modules/system/system.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.module b/modules/system/system.module index e7f93db64..5021c8331 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -122,7 +122,7 @@ function system_view_general() { $output = form_group(t("General settings"), $group); // caching: - $group = form_radios(t("Cache support"), "cache", variable_get("cache", 0), array(t("Disabled"), t("Enabled")), t("Enable or disable the caching of rendered pages. When caching is enabled, Drupal will flush the cache when required to make sure updates take effect immediately. Check the %documentation for information on Drupal's cache system.", array("%documentation" => l(t("cache documentation"), "admin/system/help#cache")))); + $group = form_radios(t("Cache support"), "cache", variable_get("cache", 0), array(t("Disabled"), t("Enabled")), t("Enable or disable the caching of rendered pages. When caching is enabled, Drupal will flush the cache when required to make sure updates take effect immediately. Check the %documentation for information on Drupal's cache system.", array("%documentation" => l(t("cache documentation"), "admin/system/help", NULL, NULL, "cache")))); $output .= form_group(t("Cache settings"), $group); |