Index: trunk/phase3/includes/ChangesList.php |
— | — | @@ -171,7 +171,8 @@ |
172 | 172 | ? 'rcid='.$rc->mAttribs['rc_id'] |
173 | 173 | : ''; |
174 | 174 | $articlelink = ' '. $this->skin->makeKnownLinkObj( $rc->getTitle(), '', $params ); |
175 | | - if($watched) $articlelink = '<strong>'.$articlelink.'</strong>'; |
| 175 | + if( $watched ) |
| 176 | + $articlelink = "<strong class=\"mw-watched\">{$articlelink}</strong>"; |
176 | 177 | global $wgContLang; |
177 | 178 | $articlelink .= $wgContLang->getDirMark(); |
178 | 179 | |
— | — | @@ -568,7 +569,7 @@ |
569 | 570 | function maybeWatchedLink( $link, $watched=false ) { |
570 | 571 | if( $watched ) { |
571 | 572 | // FIXME: css style might be more appropriate |
572 | | - return '<strong>' . $link . '</strong>'; |
| 573 | + return '<strong class="mw-watched">' . $link . '</strong>'; |
573 | 574 | } else { |
574 | 575 | return $link; |
575 | 576 | } |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -180,6 +180,8 @@ |
181 | 181 | * Confirmation is now required when deleting old versions of files |
182 | 182 | * (bug 7535) Users can now enter comments when deleting old versions of files |
183 | 183 | * (bug 11001) Submit Special:Newpages as a GET, rather than a POST request |
| 184 | +* The <strong></strong> around links to watched pages in change lists now |
| 185 | + has a class - "mw-watched" |
184 | 186 | |
185 | 187 | == Bugfixes since 1.10 == |
186 | 188 | |