From: Brion Vibber Date: Thu, 21 Apr 2005 09:43:09 +0000 (+0000) Subject: snip redundant line X-Git-Tag: 1.5.0alpha1~204 X-Git-Url: http://git.cyclocoop.org/%24self?a=commitdiff_plain;h=8ce7ef2e5d2d0bd8bd592a5af788c7228eebe763;p=lhc%2Fweb%2Fwiklou.git snip redundant line --- diff --git a/includes/SpecialUndelete.php b/includes/SpecialUndelete.php index 4a3c9af1b5..ab078d2864 100644 --- a/includes/SpecialUndelete.php +++ b/includes/SpecialUndelete.php @@ -97,8 +97,7 @@ class PageArchive { array( 'ar_namespace' => $this->title->getNamespace(), 'ar_title' => $this->title->getDBkey() ), 'PageArchive::getLastRevisionText', - array( 'ORDER BY' => 'ar_timestamp DESC', - 'LIMIT' => '1' ) ); + array( 'ORDER BY' => 'ar_timestamp DESC' ) ); if( $row ) { return Revision::getRevisionText( $row, "ar_" ); } else {