Index: trunk/phase3/includes/specials/SpecialRecentchanges.php |
— | — | @@ -597,8 +597,12 @@ |
598 | 598 | global $wgUser; |
599 | 599 | $sk = $wgUser->getSkin(); |
600 | 600 | $params = $override + $options; |
601 | | - return $sk->link( $this->getTitle(), htmlspecialchars( $title ), |
602 | | - ( $active ? array( 'style'=>'font-weight: bold;' ) : array() ), $params, array( 'known' ) ); |
| 601 | + if ( $active ) { |
| 602 | + return $sk->link( $this->getTitle(), '<strong>' . htmlspecialchars( $title ) . '</strong>', |
| 603 | + array(), $params, array( 'known' ) ); |
| 604 | + } else { |
| 605 | + return $sk->link( $this->getTitle(), htmlspecialchars( $title ), array() , $params, array( 'known' ) ); |
| 606 | + } |
603 | 607 | } |
604 | 608 | |
605 | 609 | /** |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -343,6 +343,8 @@ |
344 | 344 | * Fixed a bug caused by LanguageConverter.php, which brings an abnormal '}-' |
345 | 345 | after some parsed math syntax. |
346 | 346 | * (bug 18441) rebuildrecentchanges.inc no longer ignores $wgLogRestrictions |
| 347 | +* (bug 18317) Bolded selections in 1 | 3 | etc days on RecentChanges now use |
| 348 | + <strong> instead of hardcoded styles |
347 | 349 | |
348 | 350 | == API changes in 1.15 == |
349 | 351 | * (bug 16858) Revamped list=deletedrevs to make listing deleted contributions |