Changeset 48035 for trunk/src/wp-includes/class-smtp.php
- Timestamp:
- 06/12/2020 09:40:52 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-smtp.php
r48033 r48035 4 4 * The SMTP class has been moved to the wp-includes/PHPMailer subdirectory and now uses the PHPMailer\PHPMailer namespace. 5 5 */ 6 _deprecated_file( basename( __FILE__ ), '5.5.0', WPINC . '/PHPMailer/SMTP.php', __( 'The SMTP class has been moved to the wp-includes/PHPMailer subdirectory and now uses the PHPMailer\PHPMailer namespace.' ) ); 6 _deprecated_file( 7 basename( __FILE__ ), 8 '5.5.0', 9 WPINC . '/PHPMailer/SMTP.php', 10 __( 'The SMTP class has been moved to the wp-includes/PHPMailer subdirectory and now uses the PHPMailer\PHPMailer namespace.' ) 11 ); 12 7 13 require __DIR__ . '/PHPMailer/SMTP.php'; 14 15 class_alias( PHPMailer\PHPMailer\SMTP::class, 'SMTP' );
Note: See TracChangeset
for help on using the changeset viewer.