From: Brion Vibber Date: Wed, 26 Jan 2005 09:51:26 +0000 (+0000) Subject: * Add TitleMoveComplete hook on page renames X-Git-Tag: 1.5.0alpha1~851 X-Git-Url: http://git.cyclocoop.org/%24href?a=commitdiff_plain;h=c06bed585309d132a1a24ff17a393ef5fb3fb130;p=lhc%2Fweb%2Fwiklou.git * Add TitleMoveComplete hook on page renames --- diff --git a/includes/Title.php b/includes/Title.php index 9be6415611..cfb5f499e0 100644 --- a/includes/Title.php +++ b/includes/Title.php @@ -1410,6 +1410,7 @@ class Title { $u = new SearchUpdate( $newid, $this->getPrefixedDBkey(), '' ); $u->doUpdate(); + wfRunHooks( 'TitleMoveComplete', $this, $nt, $wgUser, $oldid, $newid ); return true; }