Changeset 46378 for trunk/src/wp-includes/class-phpmailer.php
- Timestamp:
- 10/03/2019 03:44:36 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-phpmailer.php
r46097 r46378 2713 2713 throw new phpmailerException($this->lang('file_open') . $path, self::STOP_CONTINUE); 2714 2714 } 2715 $magic_quotes = get_magic_quotes_runtime();2715 $magic_quotes = ( PHP_VERSION_ID < 70400 && get_magic_quotes_runtime() ); // WP: Patched for PHP 7.4. 2716 2716 if ($magic_quotes) { 2717 2717 if (version_compare(PHP_VERSION, '5.3.0', '<')) {
Note: See TracChangeset
for help on using the changeset viewer.