Bump limit to 50

This commit is contained in:
Aaron Schulz 2008-10-15 14:23:23 +00:00
parent 0b2ba3f5a6
commit 0eb1d8e310

View file

@ -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;