From cb33db78beb30f002f58e3b0fc6598f1c214dcbd Mon Sep 17 00:00:00 2001 From: umherirrender Date: Tue, 9 Sep 2014 20:22:35 +0200 Subject: [PATCH] Use local var in Action::setHeaders Change-Id: I543d45835016fd6f4f2ec0e84f4e5453237bbf25 --- includes/actions/Action.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/actions/Action.php b/includes/actions/Action.php index ffdf5168f2..8d11d901a2 100644 --- a/includes/actions/Action.php +++ b/includes/actions/Action.php @@ -351,7 +351,7 @@ abstract class Action { $out = $this->getOutput(); $out->setRobotPolicy( "noindex,nofollow" ); $out->setPageTitle( $this->getPageTitle() ); - $this->getOutput()->setSubtitle( $this->getDescription() ); + $out->setSubtitle( $this->getDescription() ); $out->setArticleRelated( true ); } -- 2.20.1