From e10ab8747f8275e77dad52bb43b01bf9255b9af6 Mon Sep 17 00:00:00 2001 From: umherirrender Date: Sun, 27 Jul 2014 17:21:01 +0200 Subject: [PATCH] Fix param doc of OutputPage::setHTMLTitle Method also accept Message object Change-Id: I3a5254a3776f0215667e64ff9d01d60b80375aca --- includes/OutputPage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/OutputPage.php b/includes/OutputPage.php index aa0a9088db..6bea9312d3 100644 --- a/includes/OutputPage.php +++ b/includes/OutputPage.php @@ -892,7 +892,7 @@ class OutputPage extends ContextSource { * "HTML title" means the contents of "". * It is stored as plain, unescaped text and will be run through htmlspecialchars in the skin file. * - * @param string $name + * @param string|Message $name */ public function setHTMLTitle( $name ) { if ( $name instanceof Message ) { -- 2.20.1