Index: trunk/phase3/includes/api/ApiQuerySearch.php |
— | — | @@ -93,8 +93,9 @@ |
94 | 94 | break; |
95 | 95 | } |
96 | 96 | |
97 | | - // Silently skip broken titles |
98 | | - if ($result->isBrokenTitle()) continue; |
| 97 | + // Silently skip broken and missing titles |
| 98 | + if ($result->isBrokenTitle() || $result->isMissingRevision()) |
| 99 | + continue; |
99 | 100 | |
100 | 101 | $title = $result->getTitle(); |
101 | 102 | if (is_null($resultPageSet)) { |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -148,6 +148,7 @@ |
149 | 149 | * (bug 15048) Added limit field for multivalue parameters to action=paraminfo |
150 | 150 | output. |
151 | 151 | * When the limit on multivalue parameters is exceeded, a warning is issued |
| 152 | +* list=search doesn't list missing pages any more |
152 | 153 | |
153 | 154 | === Languages updated in 1.14 === |
154 | 155 | |