Index: trunk/phase3/includes/Skin.php |
— | — | @@ -460,7 +460,7 @@ |
461 | 461 | $s = ''; |
462 | 462 | if (($undopt = $wgUser->getOption("underline")) != 2) { |
463 | 463 | $underline = $undopt ? 'underline' : 'none'; |
464 | | - $s .= "a, a * { text-decoration: $underline; }\n"; |
| 464 | + $s .= "a { text-decoration: $underline; }\n"; |
465 | 465 | } |
466 | 466 | if( $wgUser->getOption( 'highlightbroken' ) ) { |
467 | 467 | $s .= "a.new, #quickbar a.new { color: #CC2200; }\n"; |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -462,10 +462,8 @@ |
463 | 463 | * (bug 8330) Show "bytes" suffix on recent changes diff counter |
464 | 464 | * (bug 8489) Support basic links in <gallery> caption attribute |
465 | 465 | * (bug 8485) Correct Lingala number formatting |
466 | | -* When links are underlined, the entire link text should be underlined, even |
467 | | - if it contains elements with a background color set. |
468 | | -* The MediaWiki namespace is no longer pre-filled with default messages on |
469 | | - install. All default messages will be removed from the MediaWiki namespace |
| 466 | +* The MediaWiki namespace is no longer pre-filled with default messages on |
| 467 | + install. All default messages will be removed from the MediaWiki namespace |
470 | 468 | on upgrade. |
471 | 469 | * Recentchanges RSS/Atom feeds now use a separate message for the description |
472 | 470 | to avoid cluttering it with useless wiki formatting |