diff options
Diffstat (limited to 'modules/system.module')
-rw-r--r-- | modules/system.module | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/modules/system.module b/modules/system.module index e2bfb238f..12e4360e2 100644 --- a/modules/system.module +++ b/modules/system.module @@ -32,10 +32,6 @@ function system_link($type) { $links[] = la(t("site configuration"), array("mod" => "system")); } - /*if ($type == "admin" && user_access("administer modules and themes")) { - $links[] = la(t("modules and themes"), array("mod" => "system", "op" => "modules")); - }*/ - return $links ? $links : array(); } @@ -82,8 +78,8 @@ function system_view_options() { // layout settings: $output .= "<h3>Layout settings</h3>\n"; - foreach (theme_list() as $key=>$value) $options .= "<OPTION VALUE=\"$key\"". (variable_get("theme_default", 0) == $key ? " SELECTED" : "") .">$key</OPTION>\n"; - $output .= form_item("Default theme", "<SELECT NAME=\"edit[theme_default]\">$options</SELECT>", "The default theme as seen by visitors or anonymous users."); + foreach (theme_list() as $key=>$value) $options .= "<option value=\"$key\"". (variable_get("theme_default", 0) == $key ? " selected=\"selected\"" : "") .">$key</option>\n"; + $output .= form_item("Default theme", "<select name=\"edit[theme_default]\">$options</select>", "The default theme as seen by visitors or anonymous users."); $output .= "<hr />\n"; // development settings: |