Index: trunk/phase3/maintenance/namespaceDupes.php |
— | — | @@ -115,6 +115,7 @@ |
116 | 116 | |
117 | 117 | private function getInterwikiList() { |
118 | 118 | $result = $this->db->select( 'interwiki', array( 'iw_prefix' ) ); |
| 119 | + $prefixes = array(); |
119 | 120 | while( $row = $this->db->fetchObject( $result ) ) { |
120 | 121 | $prefixes[] = $row->iw_prefix; |
121 | 122 | } |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -298,6 +298,7 @@ |
299 | 299 | * (bug 17374) Special:Export no longer exports two copies of the same page |
300 | 300 | * (bug 18190) Proper parsing in MediaWiki:Sharedupload message |
301 | 301 | * (bug 17617) HTML cleanup for ImagePage |
| 302 | +* (bug 17964) namespaceDupes.php no longer fails on an empty interwiki table |
302 | 303 | |
303 | 304 | == API changes in 1.15 == |
304 | 305 | * (bug 16858) Revamped list=deletedrevs to make listing deleted contributions |