summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorwebchick <webchick@24967.no-reply.drupal.org>2011-05-29 22:39:13 -0700
committerwebchick <webchick@24967.no-reply.drupal.org>2011-05-29 22:39:13 -0700
commiteeb0bd868226101c493b54ccec9a8280e74b4da4 (patch)
tree205d963821986fac8446df0aea49f01af6824b84 /includes
parent3ace0b2a33d77955318c8c67f1d0af8a6a384336 (diff)
downloadbrdo-eeb0bd868226101c493b54ccec9a8280e74b4da4.tar.gz
brdo-eeb0bd868226101c493b54ccec9a8280e74b4da4.tar.bz2
Issue #1063636 by barbi: Changed drupal_add_css() should reference drupal_get_css().
Diffstat (limited to 'includes')
-rw-r--r--includes/common.inc5
1 files changed, 5 insertions, 0 deletions
diff --git a/includes/common.inc b/includes/common.inc
index 5dadb4d16..0e8edeaa6 100644
--- a/includes/common.inc
+++ b/includes/common.inc
@@ -2822,6 +2822,8 @@ function drupal_add_html_head_link($attributes, $header = FALSE) {
*
* @return
* An array of queued cascading stylesheets.
+ *
+ * @see drupal_get_css()
*/
function drupal_add_css($data = NULL, $options = NULL) {
$css = &drupal_static(__FUNCTION__, array());
@@ -2902,8 +2904,11 @@ function drupal_add_css($data = NULL, $options = NULL) {
* (optional) If set to TRUE, this function skips calling drupal_alter() on
* $css, useful when the calling function passes a $css array that has already
* been altered.
+ *
* @return
* A string of XHTML CSS tags.
+ *
+ * @see drupal_add_css()
*/
function drupal_get_css($css = NULL, $skip_alter = FALSE) {
if (!isset($css)) {