From 4429362d42cd845ff75d65e880c27aca1c273490 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Sat, 8 Nov 2008 19:34:08 +0000 Subject: [PATCH] Fix typo --- includes/Title.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/Title.php b/includes/Title.php index 61c5c6cba2..1b2b558d7e 100644 --- a/includes/Title.php +++ b/includes/Title.php @@ -2866,7 +2866,7 @@ class Title { # Cache some fields we may want $this->mRedirect = $row ? (bool)$row->page_is_redirect : false; $this->mLatestID = $row ? intval($row->page_latest) : false; - if( $this->mRedirect ) { + if( !$this->mRedirect ) { return false; } # Does the article have a history? -- 2.20.1