Index: trunk/phase3/docs/hooks.txt |
— | — | @@ -502,9 +502,6 @@ |
503 | 503 | $unpatrolled: Whether or not we are showing unpatrolled changes. |
504 | 504 | $watched: Whether or not the change is watched by the user. |
505 | 505 | |
506 | | -'ConfirmEmailComplete': Called after a user's email has been confirmed successfully |
507 | | -&$user: user (object) whose email is being confirmed |
508 | | - |
509 | 506 | 'ContribsPager::getQueryInfo': Before the contributions query is about to run |
510 | 507 | &$pager: Pager object for contributions |
511 | 508 | &queryInfo: The query for the contribs Pager |
Index: trunk/phase3/includes/specials/SpecialConfirmemail.php |
— | — | @@ -92,7 +92,6 @@ |
93 | 93 | $title = SpecialPage::getTitleFor( 'Userlogin' ); |
94 | 94 | $wgOut->returnToMain( true, $title ); |
95 | 95 | } |
96 | | - wfRunHooks( 'ConfirmEmailComplete', array( &$user ) ); |
97 | 96 | } else { |
98 | 97 | $wgOut->addWikiMsg( 'confirmemail_invalid' ); |
99 | 98 | } |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -28,8 +28,6 @@ |
29 | 29 | |
30 | 30 | * (bug 8068) New __INDEX__ and __NOINDEX__ magic words allow user control of |
31 | 31 | search engine indexing on a per-article basis. |
32 | | -* Added ConfirmEmailComplete hook to allow extensions to perform actions |
33 | | - depending on if the user's email is confirmed or not |
34 | 32 | * Added SpecialMovepageBeforeMove hook to allow extensions to interfere with |
35 | 33 | page moves (useful for blacklist-type extensions, for example) |
36 | 34 | |