From cb3cde8be11bd1d54bdbb323b72919072f2cb930 Mon Sep 17 00:00:00 2001 From: Angie Byron Date: Wed, 15 Apr 2009 23:49:08 +0000 Subject: #372563 by cytefx: Rename drupal_set_html_head() to drupal_ADD_html_head() which actually describes what it does. --- includes/common.inc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'includes/common.inc') diff --git a/includes/common.inc b/includes/common.inc index f17256c67..9fe1ebe90 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -130,7 +130,7 @@ function drupal_get_rdf_namespaces() { * * This function can be called as long the headers aren't sent. */ -function drupal_set_html_head($data = NULL) { +function drupal_add_html_head($data = NULL) { static $stored_head = ''; if (!is_null($data)) { @@ -144,7 +144,7 @@ function drupal_set_html_head($data = NULL) { */ function drupal_get_html_head() { $output = "\n"; - return $output . drupal_set_html_head(); + return $output . drupal_add_html_head(); } /** @@ -1972,7 +1972,7 @@ function base_path() { * This function can be called as long the HTML header hasn't been sent. */ function drupal_add_link($attributes) { - drupal_set_html_head('\n"); + drupal_add_html_head('\n"); } /** -- cgit v1.2.3