Index: trunk/phase3/includes/api/ApiQueryDeletedrevs.php |
— | — | @@ -107,9 +107,12 @@ |
108 | 108 | $lb = new LinkBatch($titles); |
109 | 109 | $where = $lb->constructSet('ar', $db); |
110 | 110 | $this->addWhere($where); |
111 | | - } else { |
112 | | - $this->dieUsage('You have to specify a page title or titles'); |
113 | 111 | } |
| 112 | + else |
| 113 | + { |
| 114 | + $dir = ($params['dir'] == 'older' ? 'DESC' : ''); |
| 115 | + $this->addOption('ORDER BY', "ar_namespace $dir, ar_title $dir"); |
| 116 | + } |
114 | 117 | |
115 | 118 | $this->addOption('LIMIT', $limit + 1); |
116 | 119 | $this->addWhereRange('ar_timestamp', $params['dir'], $params['start'], $params['end']); |