Changes between Initial Version and Version 1 of Ticket #57071
- Timestamp:
- 11/11/2022 11:02:22 AM (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #57071
- Property Keywords has-dev-note removed
-
Property
Component
changed from
General
toBuild/Test Tools
-
Ticket #57071 – Description
initial v1 23 23 - on this line the require_once will duplicate the forward slash. 24 24 25 code line: require_once ABSPATH . '/wp-includes/class-wpdb.php';26 Translated line: require_once '/usr/src/wordpress//wp-includes/class-wpdb.php'25 code line: `require_once ABSPATH . '/wp-includes/class-wpdb.php';` 26 Translated line: `require_once '/usr/src/wordpress//wp-includes/class-wpdb.php'` 27 27 28 28 2. Mock-mailer file - https://github.com/WordPress/wordpress-develop/blob/6.1/tests/phpunit/includes/mock-mailer.php#L2 … … 30 30 on this line we have a missing slash. 31 31 32 code line: require_once ABSPATH . 'wp-includes/PHPMailer/PHPMailer.php';33 Translated line: require_once '/usr/src/wordpress/wp-includes/PHPMailer/PHPMailer.php';32 code line: `require_once ABSPATH . 'wp-includes/PHPMailer/PHPMailer.php';` 33 Translated line: `require_once '/usr/src/wordpress/wp-includes/PHPMailer/PHPMailer.php';` 34 34 35 35 … … 44 44 45 45 46 Error ABSPATH with forward slash: /usr/src/wordpress/46 Error ABSPATH with forward slash: `/usr/src/wordpress/` 47 47 48 48 {{{#!php … … 56 56 }}} 57 57 58 Error ABSPATH without forward slash: /usr/src/wordpress58 Error ABSPATH without forward slash: `/usr/src/wordpress` 59 59 60 60 {{{#!php