summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2003-09-28 15:12:08 +0000
committerDries Buytaert <dries@buytaert.net>2003-09-28 15:12:08 +0000
commit949a7014df31a89f226bdbd1222e4f229b63d49f (patch)
tree31be2c1d3b71d72bd99366b6b669fa9e431df915
parentcc3ec29e87892690edd4be337aea84f685326401 (diff)
downloadbrdo-949a7014df31a89f226bdbd1222e4f229b63d49f.tar.gz
brdo-949a7014df31a89f226bdbd1222e4f229b63d49f.tar.bz2
- As of now, the default placement of the Xtemplate theme's sidebar will be
on the left. This is what people seem to expect.
-rw-r--r--themes/xtemplate/xtemplate.theme2
1 files changed, 1 insertions, 1 deletions
diff --git a/themes/xtemplate/xtemplate.theme b/themes/xtemplate/xtemplate.theme
index 0e55852b4..5d1434fc5 100644
--- a/themes/xtemplate/xtemplate.theme
+++ b/themes/xtemplate/xtemplate.theme
@@ -2,7 +2,7 @@
// $Id$
function xtemplate_settings() {
- $output = form_select(t("Sidebar placement"), "xtemplate_sidebar", variable_get("xtemplate_sidebar", "right"), array("none" => t("No sidebars"), "left" => t("Sidebar on the left"), "right" => t("Sidebar on the right"), "both" => t("Sidebar on the left and the right")));
+ $output = form_select(t("Sidebar placement"), "xtemplate_sidebar", variable_get("xtemplate_sidebar", "left"), array("none" => t("No sidebars"), "left" => t("Sidebar on the left"), "right" => t("Sidebar on the right"), "both" => t("Sidebar on the left and the right")));
$output .= form_textarea(t("Message on front page"), "xtemplate_message", variable_get("xtemplate_message", "edit message"), 70, 6, t("This text will be displayed on the front page. It can be used to display a mission statement, announcement or site description.."));
$output .= form_textfield(t("Stylesheet URL"), "xtemplate_stylesheet", variable_get("xtemplate_stylesheet", "themes/xtemplate/xtemplate.css"), 100, 300, t("The URL for your theme's cascading stylesheet."));
$output .= form_textarea(t("Logo"), "xtemplate_logo", variable_get("xtemplate_logo", "<img src=\"themes/xtemplate/images/druplicon.gif\" alt=\"Druplicon\" />"), 70, 4, t("The HTML code for displaying the logo."));