summaryrefslogtreecommitdiff
path: root/modules/system.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2003-06-08 16:50:05 +0000
committerDries Buytaert <dries@buytaert.net>2003-06-08 16:50:05 +0000
commita448f5a9b46c5a5e5bcd64072a420bef33161a44 (patch)
tree3b5ac996148f4e2b3547b45a671b00f0fbdb54ba /modules/system.module
parentff914280b9cb8961b26556cb378329e6e3bfda55 (diff)
downloadbrdo-a448f5a9b46c5a5e5bcd64072a420bef33161a44.tar.gz
brdo-a448f5a9b46c5a5e5bcd64072a420bef33161a44.tar.bz2
- Charset simpliciations. Patch #46 by Al.
Diffstat (limited to 'modules/system.module')
-rw-r--r--modules/system.module25
1 files changed, 0 insertions, 25 deletions
diff --git a/modules/system.module b/modules/system.module
index 801daa819..9834d7e05 100644
--- a/modules/system.module
+++ b/modules/system.module
@@ -129,31 +129,6 @@ function system_view_general() {
$output .= form_select(t("Date format (medium)"), "date_format_medium", variable_get("date_format_medium", $datemedium[0]), $datemediumchoices, t("The medium sized date display."));
$output .= form_select(t("Date format (long)"), "date_format_long", variable_get("date_format_long", $datelong[0]), $datelongchoices, t("Longer date format used for detailed display."));
- $output .= "<hr />\n";
-
- $output .= "<h3>". t("Character encoding settings") ."</h3>\n";
-
- // charset settings
- $charsets = array("iso-8859-1" => "iso-8859-1",
- "iso-8859-2" => "iso-8859-2",
- "iso-8859-3" => "iso-8859-3",
- "iso-8859-4" => "iso-8859-4",
- "iso-8859-5" => "iso-8859-5",
- "iso-8859-6" => "iso-8859-6",
- "iso-8859-7" => "iso-8859-7",
- "iso-8859-8" => "iso-8859-8",
- "iso-8859-8-i" => "iso-8859-8-i",
- "iso-8859-9" => "iso-8859-9",
- "utf-8" => "utf-8",
- "utf-16" => "utf-16",
- "utf-16be" => "utf-16be",
- "euc-kr" => "euc-kr",
- "koi8-r" => "koi8-r",
- "ks_c_5601-1987" => "ks_c_5601-1987",
- "tis-620" => "tis-620",
- "iso-2022-kr" => "iso-2022-kr",
- "us-ascii" => "us-ascii");
- $output .= form_select(t("Character set"), "site_charset", variable_get("site_charset", "iso-8859-1"), $charsets, t("Select the character set (charset) used across your site. This will affect the content-type tag in web pages and the XML declarations in RSS feeds, among other things. You probably only need to change this if you need support for languages with non-ASCII characters like Korean, Polish, etc."));
return $output;
}