Index: branches/REL1_17/phase3/includes/Article.php |
— | — | @@ -3265,6 +3265,7 @@ |
3266 | 3266 | $dbw->delete( 'templatelinks', array( 'tl_from' => $id ) ); |
3267 | 3267 | $dbw->delete( 'externallinks', array( 'el_from' => $id ) ); |
3268 | 3268 | $dbw->delete( 'langlinks', array( 'll_from' => $id ) ); |
| 3269 | + $dbw->delete( 'iwlinks', array( 'iwl_from' => $id ) ); |
3269 | 3270 | $dbw->delete( 'redirect', array( 'rd_from' => $id ) ); |
3270 | 3271 | } |
3271 | 3272 | |
Index: branches/REL1_17/phase3/RELEASE-NOTES |
— | — | @@ -522,7 +522,9 @@ |
523 | 523 | page restrictions |
524 | 524 | * (bug 28242) Make redirects generated by urls containing a local interwiki |
525 | 525 | prefix be a 301 instead of a 302. |
| 526 | +* (bug 28568) Entries in the iwlinks table are now removed on page deletion |
526 | 527 | |
| 528 | +=== API changes in 1.17 === |
527 | 529 | * BREAKING CHANGE: action=patrol now requires POST |
528 | 530 | * BREAKING CHANGE: patrol token is no longer the same as edit token |
529 | 531 | * BREAKING CHANGE: Session keys returned by ApiUpload are now strings instead of integers |