Forgot to add the new link tables to Article::doDeleteArticle()
authorTim Starling <tstarling@users.mediawiki.org>
Sat, 28 Jan 2006 00:35:34 +0000 (00:35 +0000)
committerTim Starling <tstarling@users.mediawiki.org>
Sat, 28 Jan 2006 00:35:34 +0000 (00:35 +0000)
includes/Article.php

index 582183f..54f3777 100644 (file)
@@ -2003,6 +2003,8 @@ class Article {
                $dbw->delete( 'pagelinks', array( 'pl_from' => $id ) );
                $dbw->delete( 'imagelinks', array( 'il_from' => $id ) );
                $dbw->delete( 'categorylinks', array( 'cl_from' => $id ) );
+               $dbw->delete( 'templatelinks', array( 'tl_from' => $id ) );
+               $dbw->delete( 'externallinks', array( 'el_from' => $id ) );
 
                # Log the deletion
                $log = new LogPage( 'delete' );