summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorSteven Wittens <steven@10.no-reply.drupal.org>2005-06-05 19:10:53 +0000
committerSteven Wittens <steven@10.no-reply.drupal.org>2005-06-05 19:10:53 +0000
commit2f28cc0bcc9cd1425156f0fbde5344bcfacb9b28 (patch)
tree2219505653a333e85a606d6d5cd7745031f1a75a /includes
parent78cb173247c158e4362e67df8cb2acd397b2d6f0 (diff)
downloadbrdo-2f28cc0bcc9cd1425156f0fbde5344bcfacb9b28.tar.gz
brdo-2f28cc0bcc9cd1425156f0fbde5344bcfacb9b28.tar.bz2
- #24278: Emit correct XHTML <link> tag.
Diffstat (limited to 'includes')
-rw-r--r--includes/common.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/common.inc b/includes/common.inc
index 0fc380eef..8648f8626 100644
--- a/includes/common.inc
+++ b/includes/common.inc
@@ -1986,7 +1986,7 @@ if (version_compare(phpversion(), '5.0') < 0) {
* Add a <link> tag to the page's HEAD.
*/
function drupal_add_link($attributes) {
- drupal_set_html_head('<link'. drupal_attributes($attributes) .">\n");
+ drupal_set_html_head('<link'. drupal_attributes($attributes) ." />\n");
}