From f7b5c54087cc31be8d9bb3021690e9ce3c303a1d Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Fri, 24 Apr 2009 18:48:56 +0000 Subject: [PATCH] Missing parenthesis --- includes/Title.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/Title.php b/includes/Title.php index 9968f9ab8f..b38cad97b1 100644 --- a/includes/Title.php +++ b/includes/Title.php @@ -2776,7 +2776,7 @@ class Title { # @bug 17860: old article can be deleted, if this the case, # delete it from message cache - if ( $this->getArticleID === 0 ) { + if ( $this->getArticleID() === 0 ) { $wgMessageCache->replace( $this->getDBkey(), false ); } else { $oldarticle = new Article( $this ); -- 2.20.1