Index: trunk/phase3/HISTORY |
— | — | @@ -9,6 +9,7 @@ |
10 | 10 | parameter without setting the text parameter. |
11 | 11 | * UserMailer could potentially throw a fatal error when a MailAddress object had |
12 | 12 | an empty email address. |
| 13 | +* (bug 34528) Edit section tooltips show correction section name again |
13 | 14 | |
14 | 15 | === MediaWiki 1.18.1 === |
15 | 16 | 2012-01-11 |
Index: trunk/phase3/includes/Skin.php |
— | — | @@ -1499,7 +1499,7 @@ |
1500 | 1500 | if ( !is_null( $tooltip ) ) { |
1501 | 1501 | # Bug 25462: undo double-escaping. |
1502 | 1502 | $tooltip = Sanitizer::decodeCharReferences( $tooltip ); |
1503 | | - $attribs['title'] = wfMsgExt( 'editsectionhint', array( 'language' => $lang, 'parsemag' ), $tooltip ); |
| 1503 | + $attribs['title'] = wfMsgExt( 'editsectionhint', array( 'language' => $lang, 'parsemag', 'replaceafter' ), $tooltip ); |
1504 | 1504 | } |
1505 | 1505 | $link = Linker::link( $nt, wfMsgExt( 'editsection', array( 'language' => $lang ) ), |
1506 | 1506 | $attribs, |
— | — | @@ -1511,7 +1511,7 @@ |
1512 | 1512 | # we can rid of it someday. |
1513 | 1513 | $attribs = ''; |
1514 | 1514 | if ( $tooltip ) { |
1515 | | - $attribs = wfMsgExt( 'editsectionhint', array( 'language' => $lang, 'parsemag', 'escape' ), $tooltip ); |
| 1515 | + $attribs = wfMsgExt( 'editsectionhint', array( 'language' => $lang, 'parsemag', 'escape', 'replaceafter' ), $tooltip ); |
1516 | 1516 | $attribs = " title=\"$attribs\""; |
1517 | 1517 | } |
1518 | 1518 | $result = null; |
Index: branches/REL1_18/phase3/RELEASE-NOTES-1.18 |
— | — | @@ -17,6 +17,7 @@ |
18 | 18 | * UserMailer could potentially throw a fatal error when a MailAddress object had |
19 | 19 | an empty email address. |
20 | 20 | * (Bug 33087) Exchange server rejected mail sent by MediaWiki |
| 21 | +* (bug 34528) Edit section tooltips show correction section name again |
21 | 22 | |
22 | 23 | == MediaWiki 1.18.1 == |
23 | 24 | 2012-01-11 |
Index: branches/REL1_18/phase3/includes/Skin.php |
— | — | @@ -1516,7 +1516,7 @@ |
1517 | 1517 | if ( !is_null( $tooltip ) ) { |
1518 | 1518 | # Bug 25462: undo double-escaping. |
1519 | 1519 | $tooltip = Sanitizer::decodeCharReferences( $tooltip ); |
1520 | | - $attribs['title'] = wfMsgExt( 'editsectionhint', array( 'language' => $lang, 'parsemag' ), $tooltip ); |
| 1520 | + $attribs['title'] = wfMsgExt( 'editsectionhint', array( 'language' => $lang, 'parsemag', 'replaceafter' ), $tooltip ); |
1521 | 1521 | } |
1522 | 1522 | $link = Linker::link( $nt, wfMsgExt( 'editsection', array( 'language' => $lang ) ), |
1523 | 1523 | $attribs, |
— | — | @@ -1528,7 +1528,7 @@ |
1529 | 1529 | # we can rid of it someday. |
1530 | 1530 | $attribs = ''; |
1531 | 1531 | if ( $tooltip ) { |
1532 | | - $attribs = wfMsgExt( 'editsectionhint', array( 'language' => $lang, 'parsemag', 'escape' ), $tooltip ); |
| 1532 | + $attribs = wfMsgExt( 'editsectionhint', array( 'language' => $lang, 'parsemag', 'escape', 'replaceafter' ), $tooltip ); |
1533 | 1533 | $attribs = " title=\"$attribs\""; |
1534 | 1534 | } |
1535 | 1535 | $result = null; |
Index: branches/REL1_19/phase3/HISTORY |
— | — | @@ -9,6 +9,7 @@ |
10 | 10 | parameter without setting the text parameter. |
11 | 11 | * UserMailer could potentially throw a fatal error when a MailAddress object had |
12 | 12 | an empty email address. |
| 13 | +* (bug 34528) Edit section tooltips show correction section name again |
13 | 14 | |
14 | 15 | === MediaWiki 1.18.1 === |
15 | 16 | 2012-01-11 |
Index: branches/REL1_19/phase3/includes/Skin.php |
— | — | @@ -1499,7 +1499,7 @@ |
1500 | 1500 | if ( !is_null( $tooltip ) ) { |
1501 | 1501 | # Bug 25462: undo double-escaping. |
1502 | 1502 | $tooltip = Sanitizer::decodeCharReferences( $tooltip ); |
1503 | | - $attribs['title'] = wfMsgExt( 'editsectionhint', array( 'language' => $lang, 'parsemag' ), $tooltip ); |
| 1503 | + $attribs['title'] = wfMsgExt( 'editsectionhint', array( 'language' => $lang, 'parsemag', 'replaceafter' ), $tooltip ); |
1504 | 1504 | } |
1505 | 1505 | $link = Linker::link( $nt, wfMsgExt( 'editsection', array( 'language' => $lang ) ), |
1506 | 1506 | $attribs, |
— | — | @@ -1511,7 +1511,7 @@ |
1512 | 1512 | # we can rid of it someday. |
1513 | 1513 | $attribs = ''; |
1514 | 1514 | if ( $tooltip ) { |
1515 | | - $attribs = wfMsgExt( 'editsectionhint', array( 'language' => $lang, 'parsemag', 'escape' ), $tooltip ); |
| 1515 | + $attribs = wfMsgExt( 'editsectionhint', array( 'language' => $lang, 'parsemag', 'escape', 'replaceafter' ), $tooltip ); |
1516 | 1516 | $attribs = " title=\"$attribs\""; |
1517 | 1517 | } |
1518 | 1518 | $result = null; |