Changeset 61083
- Timestamp:
- 10/28/2025 04:52:53 PM (7 weeks ago)
- File:
-
- 1 edited
-
trunk/tests/phpunit/includes/functions.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/includes/functions.php
r61063 r61083 228 228 list( $message, $title, $args ) = _wp_die_process_input( $message, $title, $args ); 229 229 230 $message = html_entity_decode( strip_tags( $message ) ); 231 $title = html_entity_decode( strip_tags( $title ) ); 232 233 echo "\033[0;31m"; 230 234 echo "\nwp_die() called\n"; 231 235 echo "Message: $message\n"; 236 echo "\033[0m"; 232 237 233 238 if ( ! empty( $title ) ) { … … 260 265 list( $message, $title, $args ) = _wp_die_process_input( $message, $title, $args ); 261 266 267 $message = html_entity_decode( strip_tags( $message ) ); 268 $title = html_entity_decode( strip_tags( $title ) ); 269 270 echo "\033[0;31m"; 262 271 echo "\nwp_die() called\n"; 263 272 echo "Message: $message\n"; 273 echo "\033[0m"; 264 274 265 275 if ( ! empty( $title ) ) {
Note: See TracChangeset
for help on using the changeset viewer.