* (bug 21085) list=deletedrevs no longer returns only one revision when drcontinue...
authorAlexandre Emsenhuber <ialex@users.mediawiki.org>
Sat, 24 Oct 2009 11:50:10 +0000 (11:50 +0000)
committerAlexandre Emsenhuber <ialex@users.mediawiki.org>
Sat, 24 Oct 2009 11:50:10 +0000 (11:50 +0000)
RELEASE-NOTES
includes/api/ApiQueryDeletedrevs.php

index e0c6e40..4aba3ce 100644 (file)
@@ -651,6 +651,8 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
   customized messages
 * Don't parse magic words in meta=allmessages, output messages unparsed
 * (bug 21105) list=usercontribs can now list contribs for User:0
+* (bug 21085) list=deletedrevs no longer returns only one revision when
+  drcontinue param is passed
 
 === Languages updated in 1.16 ===
 
index 9da080a..cb86024 100644 (file)
@@ -152,7 +152,7 @@ class ApiQueryDeletedrevs extends ApiQueryBase {
                                        "(ar_namespace = $ns AND " .
                                        "(ar_title $op '$title' OR " .
                                        "(ar_title = '$title' AND " .
-                                       "ar_timestamp = '$ts')))");
+                                       "ar_timestamp $op= '$ts')))");
                }
 
                $this->addOption('LIMIT', $limit + 1);