From: Tim Starling Date: Sun, 29 Apr 2007 10:15:05 +0000 (+0000) Subject: addHeadItem() method X-Git-Tag: 1.31.0-rc.0~53182 X-Git-Url: http://git.cyclocoop.org/%24image?a=commitdiff_plain;h=f4f4722521a09c7b043903cef7980ba484ae7179;p=lhc%2Fweb%2Fwiklou.git addHeadItem() method --- diff --git a/includes/OutputPage.php b/includes/OutputPage.php index 96bd587cc1..03e832a454 100644 --- a/includes/OutputPage.php +++ b/includes/OutputPage.php @@ -93,6 +93,9 @@ class OutputPage { return $s; } + function addHeadItem( $name, $value ) { + $this->mHeadItems[$name] = $value; + } function setETag($tag) { $this->mETag = $tag; } function setArticleBodyOnly($only) { $this->mArticleBodyOnly = $only; }