Index: trunk/phase3/includes/UserMailer.php |
— | — | @@ -622,13 +622,18 @@ |
623 | 623 | |
624 | 624 | } # end of class EmailNotification |
625 | 625 | |
626 | | -/** |
| 626 | +/**@{ |
627 | 627 | * Backwards compatibility functions |
| 628 | + * |
| 629 | + * @deprecated Use UserMailer methods; will be removed in 1.19 |
628 | 630 | */ |
629 | 631 | function wfRFC822Phrase( $s ) { |
| 632 | + wfDeprecated( __FUNCTION__ ); |
630 | 633 | return UserMailer::rfc822Phrase( $s ); |
631 | 634 | } |
632 | 635 | |
633 | 636 | function userMailer( $to, $from, $subject, $body, $replyto=null ) { |
| 637 | + wfDeprecated( __FUNCTION__ ); |
634 | 638 | return UserMailer::send( $to, $from, $subject, $body, $replyto ); |
635 | 639 | } |
| 640 | +/**@}*/ |
\ No newline at end of file |