summaryrefslogtreecommitdiff
path: root/modules/system.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2001-11-25 15:08:53 +0000
committerDries Buytaert <dries@buytaert.net>2001-11-25 15:08:53 +0000
commit8fa7c24d45fa80749503131ceba0ddcb74384f09 (patch)
treebbad2ed929c6295aaff8367ef3e9119b00faa608 /modules/system.module
parentc6a9f758ad8a5edd7e121ec9a845ac49d5eaf4ae (diff)
downloadbrdo-8fa7c24d45fa80749503131ceba0ddcb74384f09.tar.gz
brdo-8fa7c24d45fa80749503131ceba0ddcb74384f09.tar.bz2
- Removed the "password words" setting: they are part of the user system
now and where therefore listed twice.
Diffstat (limited to 'modules/system.module')
-rw-r--r--modules/system.module1
1 files changed, 0 insertions, 1 deletions
diff --git a/modules/system.module b/modules/system.module
index 70a28555f..9a86ea9db 100644
--- a/modules/system.module
+++ b/modules/system.module
@@ -35,7 +35,6 @@ function system_view_options() {
$output .= form_textfield("Slogan", "site_slogan", variable_get("site_slogan", ""), 55, 128, "The slogan of this website");
$output .= form_textarea("Footer message", "site_footer", variable_get("site_footer", ""), 55, 3, "This text will be displayed at the bottom of each page. Useful for adding a copyright notice to your pages.");
$output .= form_textfield("Anonymous user", "anonymous", variable_get("anonymous", "Anonymous"), 30, 55, "The name used to indicate anonymous users.");
- $output .= form_textfield("Password words", "account_words", variable_get("account_words", "foo,bar,guy,neo,tux,moo,sun,asm,dot,god,axe,geek,nerd,fish,hack,star,mice,warp,moon,hero,cola,girl,fish,java,perl,boss,dark,sith,jedi,drop,mojo"), 55, 256, "Words used in the creation of passwords. Comma seperated list.");
foreach (module_list() as $name) { if (module_hook($name, "page")) $pages[$name] = $name; }
$output .= form_select("Default front page", "site_frontpage", variable_get("site_frontpage", "node"), $pages, "The default front page.");
$output .= form_textfield("Extra front page settings", "site_frontpage_extra", variable_get("site_frontpage_extra", ""), 55, 128, "Lets you define additonal variables for the main page in PHP.");