Skip to content
Snippets Groups Projects
Commit 716e833a authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Update Xtemplate theme to support the onload attribute (was not included in
  Gordon's patch).

- Updated CHANGELOG.
parent b505b5ab
No related branches found
No related tags found
No related merge requests found
...@@ -2,12 +2,13 @@ Drupal x.x.x, xxxx-xx-xx (to be released) ...@@ -2,12 +2,13 @@ Drupal x.x.x, xxxx-xx-xx (to be released)
------------------------ ------------------------
- added support for clean URLs. - added support for clean URLs.
- added textarea hook and support for onload attributes: enables integration of WYSIWYG editors.
- rewrote the RSS/RDF parser: - rewrote the RSS/RDF parser:
* it will now use PHP's built-in XML parser to parse news feeds. * it will now use PHP's built-in XML parser to parse news feeds.
- rewrote the administration pages: - rewrote the administration pages:
* improved the navigational elements and added breadcrumb navigation * improved the navigational elements and added breadcrumb navigation.
* improved the look and feel * improved the look and feel.
* added context-sensitive help * added context-sensitive help.
- database backend: - database backend:
* fixed numereous SQL queries to make Drupal ANSI compliant. * fixed numereous SQL queries to make Drupal ANSI compliant.
* added MSSQL database scheme. * added MSSQL database scheme.
......
...@@ -76,6 +76,7 @@ function header($title = "") { ...@@ -76,6 +76,7 @@ function header($title = "") {
"title" => ($title ? $title." | ". variable_get("site_name", "drupal") : variable_get("site_name", "drupal") ." | ". variable_get("site_slogan", "")), "title" => ($title ? $title." | ". variable_get("site_name", "drupal") : variable_get("site_name", "drupal") ." | ". variable_get("site_slogan", "")),
"head" => theme_head(), "head" => theme_head(),
"base" => "$base_url/", "base" => "$base_url/",
"onload_attributes" => theme_onload_attribute(),
"primary_links" => variable_get("xtemplate_primary_links", l("edit primary links", "admin/system/themes/settings")), "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")) "secondary_links" => variable_get("xtemplate_secondary_links", l("edit secondary links", "admin/system/themes/settings"))
)); ));
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
{head} {head}
</head> </head>
<body> <body{onload_attributes}>
<table border="0" cellpadding="0" cellspacing="0" class="header"> <table border="0" cellpadding="0" cellspacing="0" class="header">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment