Index: trunk/extensions/SocialProfile/UserWelcome/UserWelcome.php |
— | — | @@ -141,16 +141,16 @@ |
142 | 142 | if ( $friend_request_count > 0 ) { |
143 | 143 | $output .= '<p> |
144 | 144 | <img src="' . $wgScriptPath . '/extensions/SocialProfile/images/addedFriendIcon.png" alt="" border="0" /> |
145 | | - <a href="' . $relationship_request_link->escapeFullURL() . '" rel="nofollow">' |
146 | | - . wfMsgExt( 'mp-request-new-friend', 'parsemag', $friend_request_count ) . '</a> |
| 145 | + <span class="profile-on"><a href="' . $relationship_request_link->escapeFullURL() . '" rel="nofollow">' |
| 146 | + . wfMsgExt( 'mp-request-new-friend', 'parsemag', $friend_request_count ) . '</a></span> |
147 | 147 | </p>'; |
148 | 148 | } |
149 | 149 | |
150 | 150 | if ( $foe_request_count > 0 ) { |
151 | 151 | $output .= '<p> |
152 | 152 | <img src="' . $wgScriptPath . '/extensions/SocialProfile/images/addedFoeIcon.png" alt="" border="0" /> |
153 | | - <a href="' . $relationship_request_link->escapeFullURL() . '" rel="nofollow">' |
154 | | - . wfMsgExt( 'mp-request-new-foe', 'parsemag', $foe_request_count ) . '</a> |
| 153 | + <span class="profile-on"><a href="' . $relationship_request_link->escapeFullURL() . '" rel="nofollow">' |
| 154 | + . wfMsgExt( 'mp-request-new-foe', 'parsemag', $foe_request_count ) . '</a></span> |
155 | 155 | </p>'; |
156 | 156 | } |
157 | 157 | |
— | — | @@ -165,9 +165,9 @@ |
166 | 166 | if ( $gift_count > 0 ) { |
167 | 167 | $output .= '<p> |
168 | 168 | <img src="' . $wgScriptPath . '/extensions/SocialProfile/images/icon_package_get.gif" alt="" border="0" /> |
169 | | - <a href="' . $gifts_title->escapeFullURL() . '" rel="nofollow">' |
| 169 | + <span class="profile-on"><a href="' . $gifts_title->escapeFullURL() . '" rel="nofollow">' |
170 | 170 | . wfMsgExt( 'mp-request-new-gift', 'parsemag', $gift_count ) . |
171 | | - '</a> |
| 171 | + '</a></span> |
172 | 172 | </p>'; |
173 | 173 | } |
174 | 174 | return $output; |
— | — | @@ -182,9 +182,9 @@ |
183 | 183 | if ( $gift_count > 0 ) { |
184 | 184 | $output .= '<p> |
185 | 185 | <img src="' . $wgScriptPath . '/extensions/SocialProfile/images/awardIcon.png" alt="" border="0" /> |
186 | | - <a href="' . $gifts_title->escapeFullURL() . '" rel="nofollow">' |
| 186 | + <span class="profile-on"><a href="' . $gifts_title->escapeFullURL() . '" rel="nofollow">' |
187 | 187 | . wfMsgExt( 'mp-request-new-award', 'parsemag', $gift_count ) . |
188 | | - '</a> |
| 188 | + '</a></span> |
189 | 189 | </p>'; |
190 | 190 | } |
191 | 191 | |
— | — | @@ -199,9 +199,9 @@ |
200 | 200 | $board_link = SpecialPage::getTitleFor( 'UserBoard' ); |
201 | 201 | $output .= '<p> |
202 | 202 | <img src="' . $wgScriptPath . '/extensions/SocialProfile/images/emailIcon.gif" alt="" border="" /> |
203 | | - <a href="' . $board_link->escapeFullURL() . '" rel="nofollow">' |
| 203 | + <span class="profile-on"><a href="' . $board_link->escapeFullURL() . '" rel="nofollow">' |
204 | 204 | . wfMsg( 'mp-request-new-message' ) . |
205 | | - '</a> |
| 205 | + '</a></span> |
206 | 206 | </p>'; |
207 | 207 | } |
208 | 208 | return $output; |