From af280fa1dff3e68d40c85c66b5c3b4e3a0ed4cad Mon Sep 17 00:00:00 2001 From: Ilmari Karonen Date: Mon, 14 May 2007 03:38:42 +0000 Subject: [PATCH] rm useless "!!" left over from testing --- includes/CategoryPage.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/CategoryPage.php b/includes/CategoryPage.php index 9b11d26409..48f545d225 100644 --- a/includes/CategoryPage.php +++ b/includes/CategoryPage.php @@ -223,9 +223,9 @@ class CategoryViewer { if( $title->getNamespace() == NS_CATEGORY ) { $this->addSubcategory( $title, $x->cl_sortkey, $x->page_len ); } elseif( $title->getNamespace() == NS_IMAGE ) { - $this->addImage( $title, $x->cl_sortkey, $x->page_len, !!$x->page_is_redirect ); + $this->addImage( $title, $x->cl_sortkey, $x->page_len, $x->page_is_redirect ); } else { - $this->addPage( $title, $x->cl_sortkey, $x->page_len, !!$x->page_is_redirect ); + $this->addPage( $title, $x->cl_sortkey, $x->page_len, $x->page_is_redirect ); } } $dbr->freeResult( $res ); -- 2.20.1