diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-12-28 10:47:33 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-12-28 10:47:33 +0000 |
commit | baaa21e1316354ada6d985a5b799ce17d6255590 (patch) | |
tree | dcd7d9a51ad26ff41e6633cca4b5a272ba72eab8 /modules/archive/archive.module | |
parent | 5c0cd3c03f956412c0b0e859d31a1ffe265ef1a1 (diff) | |
download | brdo-baaa21e1316354ada6d985a5b799ce17d6255590.tar.gz brdo-baaa21e1316354ada6d985a5b799ce17d6255590.tar.bz2 |
- Tidied up some inconsistencies in the code: scripts/code-style.sh is your friend.
Diffstat (limited to 'modules/archive/archive.module')
-rw-r--r-- | modules/archive/archive.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/archive/archive.module b/modules/archive/archive.module index 59fe4a6ff..6c4218131 100644 --- a/modules/archive/archive.module +++ b/modules/archive/archive.module @@ -253,7 +253,7 @@ function archive_page() { function archive_settings() { - $output .= form_select( t("First day of week"), "default_firstday", variable_get("default_firstday", 0), array(0 => t("Sunday"), 1 => t("Monday"), 2 => t("Tuesday"), 3 => t("Wednesday"), 4 => t("Thursday"), 5 => t("Friday"), 6 => t("Saturday")), t("The first day of the week. By changing this value you choose how the calendar block is rendered.")); + $output .= form_select(t("First day of week"), "default_firstday", variable_get("default_firstday", 0), array(0 => t("Sunday"), 1 => t("Monday"), 2 => t("Tuesday"), 3 => t("Wednesday"), 4 => t("Thursday"), 5 => t("Friday"), 6 => t("Saturday")), t("The first day of the week. By changing this value you choose how the calendar block is rendered.")); return $output; } |