diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-10-24 18:01:58 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-10-24 18:01:58 +0000 |
commit | 14d3b45d02ee82c0cffa84969d36d109e5edbcf5 (patch) | |
tree | fea1ba6041cf92c5b14545d8928c4996aa30c6e5 /modules/system/system.module | |
parent | bfc5157357caf10b4213c4cc36423734e15ff0dd (diff) | |
download | brdo-14d3b45d02ee82c0cffa84969d36d109e5edbcf5.tar.gz brdo-14d3b45d02ee82c0cffa84969d36d109e5edbcf5.tar.bz2 |
- Usability improvement: removed the cron setting. It was dead code.
Diffstat (limited to 'modules/system/system.module')
-rw-r--r-- | modules/system/system.module | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/modules/system/system.module b/modules/system/system.module index 230a4e4f4..e43e2d4e9 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -110,11 +110,6 @@ function system_view_general() { $output .= form_select(t("Clean URLs"), "clean_url", variable_get("clean_url", 0), array(t("Disabled"), t("Enabled")), t("Enable or disable clean URLs. If enabled, you'll need <code>ModRewrite</code> support. See also the <code>.htaccess</code> file in Drupal's top-level directory.")); $output .= "<hr />\n"; - // cron: - $output .= "<h3>". t("Cron settings") ."</h3>\n"; - $output .= form_select(t("Cron support"), "cron", variable_get("cron", 1), array(t("Disabled"), t("Enabled")), t("Enable or disable cron support. Enable this setting if you have set up a cron job. Check the %documentation for information on setting up a cron job.", array("%documentation" => l(t("cron documentation"), "admin/system/help#cron")))); - $output .= "<hr />\n"; - // caching: $output .= "<h3>". t("Cache settings") ."</h3>\n"; $output .= form_select(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")))); |