Index: trunk/phase3/HISTORY |
— | — | @@ -457,6 +457,7 @@ |
458 | 458 | * (bug 1379) Installer directory conflicts with some hosts' configuration panel. |
459 | 459 | * (bug 12070) After Installation MySQL was blocked |
460 | 460 | * Fix XML well-formedness on a few pages when $wgHtml5 is true (the default) |
| 461 | +* (bug 28568) Entries in the iwlinks table are now removed on page deletion |
461 | 462 | |
462 | 463 | === API changes in 1.17 === |
463 | 464 | * (bug 22738) Allow filtering by action type on query=logevent. |
Index: trunk/phase3/includes/Article.php |
— | — | @@ -3134,6 +3134,7 @@ |
3135 | 3135 | $dbw->delete( 'templatelinks', array( 'tl_from' => $id ) ); |
3136 | 3136 | $dbw->delete( 'externallinks', array( 'el_from' => $id ) ); |
3137 | 3137 | $dbw->delete( 'langlinks', array( 'll_from' => $id ) ); |
| 3138 | + $dbw->delete( 'iwlinks', array( 'iwl_from' => $id ) ); |
3138 | 3139 | $dbw->delete( 'redirect', array( 'rd_from' => $id ) ); |
3139 | 3140 | } |
3140 | 3141 | |