Use inNamespace in CategoryPage

Change-Id: I55dae5163d62c25536fb040764cab99cd4deb9b7
This commit is contained in:
Niklas Laxström 2016-05-19 14:48:26 +02:00 committed by Umherirrender
parent e278901968
commit 3c95510deb

View file

@ -71,13 +71,13 @@ class CategoryPage extends Article {
}
$title = $this->getTitle();
if ( NS_CATEGORY == $title->getNamespace() ) {
if ( $title->inNamespace( NS_CATEGORY ) ) {
$this->openShowCategory();
}
parent::view();
if ( NS_CATEGORY == $title->getNamespace() ) {
if ( $title->inNamespace( NS_CATEGORY ) ) {
$this->closeShowCategory();
}
}