Changeset 46612 for trunk/tests/phpunit/tests/formatting/EscUrl.php
- Timestamp:
- 10/29/2019 02:26:41 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/formatting/EscUrl.php
r46586 r46612 210 210 I thought you might want to sign up for this newsletter 211 211 EOT; 212 $body = str_replace( "\r\n", "\n", $body ); 212 213 $email_link = 'mailto:?body=' . rawurlencode( $body ); 213 214 $email_link = esc_url( $email_link ); … … 224 225 I thought you might want to sign up for this newsletter 225 226 EOT; 227 $body = str_replace( "\r\n", "\n", $body ); 226 228 $email_link = 'http://example.com/mailto:?body=' . rawurlencode( $body ); 227 229 $email_link = esc_url( $email_link );
Note: See TracChangeset
for help on using the changeset viewer.