Index: trunk/extensions/SocialProfile/UserProfile/UserProfilePage.php |
— | — | @@ -94,6 +94,10 @@ |
95 | 95 | |
96 | 96 | $wgOut->addHTML( $this->getPersonalInfo( $this->user_id, $this->user_name ) ); |
97 | 97 | $wgOut->addHTML( $this->getActivity( $this->user_name ) ); |
| 98 | + // Hook for BlogPage |
| 99 | + if ( !wfRunHooks( 'UserProfileRightSideAfterActivity', array( $this ) ) ) { |
| 100 | + wfDebug( __METHOD__ . ": UserProfileRightSideAfterActivity hook messed up profile!\n" ); |
| 101 | + } |
98 | 102 | $wgOut->addHTML( $this->getCasualGames( $this->user_id, $this->user_name ) ); |
99 | 103 | $wgOut->addHTML( $this->getUserBoard( $this->user_id, $this->user_name ) ); |
100 | 104 | |