From 4ab60836ef5721b51b868a86fafaa7adbce9aae4 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Thu, 10 Apr 2008 17:49:59 +0000 Subject: [PATCH] Add __METHOD__ --- includes/Title.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/includes/Title.php b/includes/Title.php index b7b5d1e214..673ee16180 100644 --- a/includes/Title.php +++ b/includes/Title.php @@ -2862,7 +2862,8 @@ class Title { return $dbr->selectField( 'revision', 'count(*)', 'rev_page = ' . intval( $this->getArticleId() ) . ' AND rev_id > ' . intval( $old ) . - ' AND rev_id < ' . intval( $new ) ); + ' AND rev_id < ' . intval( $new ), + __METHOD__ ); } /** -- 2.20.1