Index: trunk/phase3/includes/SpecialMovepage.php |
— | — | @@ -198,6 +198,8 @@ |
199 | 199 | $this->showForm( $error ); |
200 | 200 | return; |
201 | 201 | } |
| 202 | + |
| 203 | + wfRunHooks( 'SpecialMovepageAfterMove', array( &$this , &$ot , &$nt ) ) ; |
202 | 204 | |
203 | 205 | # Move talk page if |
204 | 206 | # (1) the checkbox says to, |
— | — | @@ -214,6 +216,7 @@ |
215 | 217 | $error = $ott->moveTo( $ntt, true, $this->reason ); |
216 | 218 | if ( $error === true ) { |
217 | 219 | $talkmoved = 1; |
| 220 | + wfRunHooks( 'SpecialMovepageAfterMove', array( &$this , &$ott , &$ntt ) ) ; |
218 | 221 | } else { |
219 | 222 | $talkmoved = $error; |
220 | 223 | } |