Index: trunk/phase3/docs/hooks.txt |
— | — | @@ -376,7 +376,7 @@ |
377 | 377 | my talk page, my contributions" etc). |
378 | 378 | |
379 | 379 | &$personal_urls: Array of link specifiers (see SkinTemplate.php) |
380 | | -$title: Title object representing the current page |
| 380 | +&$title: Title object representing the current page |
381 | 381 | |
382 | 382 | 'TitleMoveComplete': after moving an article (title) |
383 | 383 | $old: old title |
Index: trunk/phase3/includes/SkinTemplate.php |
— | — | @@ -525,8 +525,8 @@ |
526 | 526 | ); |
527 | 527 | } |
528 | 528 | } |
529 | | - |
530 | | - wfRunHooks( 'PersonalUrls', array( $personal_urls, $wgTitle ) ); |
| 529 | + |
| 530 | + wfRunHooks( 'PersonalUrls', array( &$personal_urls, &$wgTitle ) ); |
531 | 531 | wfProfileOut( $fname ); |
532 | 532 | return $personal_urls; |
533 | 533 | } |