Index: trunk/phase3/includes/api/ApiQueryDeletedrevs.php |
— | — | @@ -107,12 +107,9 @@ |
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'); |
111 | 113 | } |
112 | | - else |
113 | | - { |
114 | | - $dir = ($params['dir'] == 'older' ? 'DESC' : ''); |
115 | | - $this->addOption('ORDER BY', "ar_namespace $dir, ar_title $dir"); |
116 | | - } |
117 | 114 | |
118 | 115 | $this->addOption('LIMIT', $limit + 1); |
119 | 116 | $this->addWhereRange('ar_timestamp', $params['dir'], $params['start'], $params['end']); |