Index: trunk/phase3/includes/UserMailer.php |
— | — | @@ -267,6 +267,7 @@ |
268 | 268 | |
269 | 269 | /** |
270 | 270 | * Converts a string into quoted-printable format |
| 271 | + * @since 1.17 |
271 | 272 | */ |
272 | 273 | public static function quotedPrintable( $string, $charset = '' ) { |
273 | 274 | # Probably incomplete; see RFC 2045 |
— | — | @@ -654,18 +655,24 @@ |
655 | 656 | /**@{ |
656 | 657 | * Backwards compatibility functions |
657 | 658 | * |
658 | | - * @deprecated Use UserMailer methods; will be removed in 1.19 |
| 659 | + * @deprecated Use UserMailer method deprecated in 1.18, remove in 1.19. |
659 | 660 | */ |
660 | 661 | function wfRFC822Phrase( $s ) { |
661 | 662 | wfDeprecated( __FUNCTION__ ); |
662 | 663 | return UserMailer::rfc822Phrase( $s ); |
663 | 664 | } |
664 | 665 | |
| 666 | +/** |
| 667 | + * @deprecated Use UserMailer method deprecated in 1.18, remove in 1.19. |
| 668 | + */ |
665 | 669 | function userMailer( $to, $from, $subject, $body, $replyto = null ) { |
666 | 670 | wfDeprecated( __FUNCTION__ ); |
667 | 671 | return UserMailer::send( $to, $from, $subject, $body, $replyto ); |
668 | 672 | } |
669 | 673 | |
| 674 | +/** |
| 675 | + * @deprecated Use UserMailer method deprecated in 1.18, remove in 1.19. |
| 676 | + */ |
670 | 677 | function wfQuotedPrintable( $string, $charset = '' ) { |
671 | 678 | wfDeprecated( __FUNCTION__ ); |
672 | 679 | return UserMailer::quotedPrintable( $string, $charset ); |