From 0eb1d8e3109ba12046b62b8498538ff1dc7bea1f Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Wed, 15 Oct 2008 14:23:23 +0000 Subject: [PATCH] Bump limit to 50 --- includes/EditPage.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/EditPage.php b/includes/EditPage.php index 7d3d7e602f..be4dee1b19 100644 --- a/includes/EditPage.php +++ b/includes/EditPage.php @@ -1017,7 +1017,7 @@ class EditPage { /** * Check if no edits were made by other users since * the time a user started editing the page. Limit to - * 20 revisions for the sake of sanity. + * 50 revisions for the sake of performance. */ protected function userWasLastToEdit( $id, $edittime ) { $dbw = wfGetDB( DB_MASTER ); @@ -1028,7 +1028,7 @@ class EditPage { 'rev_timestamp > '.$dbw->addQuotes( $dbw->timestamp($edittime) ) ), __METHOD__, - array( 'ORDER BY' => 'rev_timestamp ASC', 'LIMIT' => 20 ) ); + array( 'ORDER BY' => 'rev_timestamp ASC', 'LIMIT' => 50 ) ); while( $row = $res->fetchObject() ) { if( $row->rev_user != $id ) { return false; -- 2.20.1