- #24278: Emit correct XHTML <link> tag.

4.7.x
Steven Wittens 2005-06-05 19:10:53 +00:00
parent 78cb173247
commit 2f28cc0bcc
1 changed files with 1 additions and 1 deletions

View File

@ -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");
}