diff options
-rw-r--r-- | CHANGELOG | 7 | ||||
-rw-r--r-- | themes/xtemplate/xtemplate.theme | 1 | ||||
-rw-r--r-- | themes/xtemplate/xtemplate.xtmpl | 2 |
3 files changed, 6 insertions, 4 deletions
@@ -2,12 +2,13 @@ Drupal x.x.x, xxxx-xx-xx (to be released) ------------------------ - added support for clean URLs. +- added textarea hook and support for onload attributes: enables integration of WYSIWYG editors. - rewrote the RSS/RDF parser: * it will now use PHP's built-in XML parser to parse news feeds. - rewrote the administration pages: - * improved the navigational elements and added breadcrumb navigation - * improved the look and feel - * added context-sensitive help + * improved the navigational elements and added breadcrumb navigation. + * improved the look and feel. + * added context-sensitive help. - database backend: * fixed numereous SQL queries to make Drupal ANSI compliant. * added MSSQL database scheme. diff --git a/themes/xtemplate/xtemplate.theme b/themes/xtemplate/xtemplate.theme index 4ff4f06d3..fbc5df663 100644 --- a/themes/xtemplate/xtemplate.theme +++ b/themes/xtemplate/xtemplate.theme @@ -76,6 +76,7 @@ class Theme_xtemplate extends BaseTheme { "title" => ($title ? $title." | ". variable_get("site_name", "drupal") : variable_get("site_name", "drupal") ." | ". variable_get("site_slogan", "")), "head" => theme_head(), "base" => "$base_url/", + "onload_attributes" => theme_onload_attribute(), "primary_links" => variable_get("xtemplate_primary_links", l("edit primary links", "admin/system/themes/settings")), "secondary_links" => variable_get("xtemplate_secondary_links", l("edit secondary links", "admin/system/themes/settings")) )); diff --git a/themes/xtemplate/xtemplate.xtmpl b/themes/xtemplate/xtemplate.xtmpl index 4e5d272be..d04e6e3e9 100644 --- a/themes/xtemplate/xtemplate.xtmpl +++ b/themes/xtemplate/xtemplate.xtmpl @@ -12,7 +12,7 @@ {head} </head> -<body> +<body{onload_attributes}> <table border="0" cellpadding="0" cellspacing="0" class="header"> |