MediaWiki r33608 - Code Review

Jump to: navigation, search
Repository:MediaWiki
Revision:r33607‎ | r33608 (on ViewVC)‎ | r33609 >
Date:17:24, 19 April 2008
Author:btongminh
Status:old
Tags:
Comment:
(bug 13792) Broken titles are now silently skipped in API search results.
Modified paths:

Diff [purge]

Index: trunk/phase3/includes/api/ApiQuerySearch.php
@@ -78,6 +78,9 @@
7979 break;
8080 }
8181
 82+ // Silently skip broken titles
 83+ if ($result->isBrokenTitle()) continue;
 84+
8285 $title = $result->getTitle();
8386 if (is_null($resultPageSet)) {
8487 $data[] = array(
Index: trunk/phase3/RELEASE-NOTES
@@ -254,6 +254,7 @@
255255 * (bug 13544) Added oldid parameter to action=parse to allow for parsing of old revisions
256256 * (bug 13718) Return the proper continue parameter for cmsort=timestamp
257257 * action=login now returns the correct waiting time in the details property
 258+* (bug 13792) Broken titles are now silently skipped in search results.
258259
259260 === Languages updated in 1.13 ===
260261

Status & tagging log

  • 15:26, 12 September 2011 Meno25 (talk | contribs) changed the status of r33608 [removed: ok added: old]