From f4f4722521a09c7b043903cef7980ba484ae7179 Mon Sep 17 00:00:00 2001 From: Tim Starling Date: Sun, 29 Apr 2007 10:15:05 +0000 Subject: [PATCH] addHeadItem() method --- includes/OutputPage.php | 3 +++ 1 file changed, 3 insertions(+) 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; } -- 2.20.1