Changeset 47198 for trunk/tests/phpunit/tests/oembed/template.php
- Timestamp:
- 02/06/2020 06:31:22 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/oembed/template.php
r46586 r47198 25 25 26 26 ob_start(); 27 include( ABSPATH . WPINC . '/theme-compat/embed.php' );27 require ABSPATH . WPINC . '/theme-compat/embed.php'; 28 28 $actual = ob_get_clean(); 29 29 … … 57 57 58 58 ob_start(); 59 include( ABSPATH . WPINC . '/theme-compat/embed.php' );59 require ABSPATH . WPINC . '/theme-compat/embed.php'; 60 60 $actual = ob_get_clean(); 61 61 … … 74 74 75 75 ob_start(); 76 include( ABSPATH . WPINC . '/theme-compat/embed.php' );76 require ABSPATH . WPINC . '/theme-compat/embed.php'; 77 77 $actual = ob_get_clean(); 78 78 … … 101 101 102 102 ob_start(); 103 include( ABSPATH . WPINC . '/theme-compat/embed.php' );103 require ABSPATH . WPINC . '/theme-compat/embed.php'; 104 104 $actual = ob_get_clean(); 105 105 … … 126 126 127 127 ob_start(); 128 include( ABSPATH . WPINC . '/theme-compat/embed.php' );128 require ABSPATH . WPINC . '/theme-compat/embed.php'; 129 129 $actual = ob_get_clean(); 130 130 … … 150 150 151 151 ob_start(); 152 include( ABSPATH . WPINC . '/theme-compat/embed.php' );152 require ABSPATH . WPINC . '/theme-compat/embed.php'; 153 153 $actual = ob_get_clean(); 154 154 … … 173 173 174 174 ob_start(); 175 include( ABSPATH . WPINC . '/theme-compat/embed.php' );175 require ABSPATH . WPINC . '/theme-compat/embed.php'; 176 176 $actual = ob_get_clean(); 177 177 … … 200 200 201 201 ob_start(); 202 include( ABSPATH . WPINC . '/theme-compat/embed.php' );202 require ABSPATH . WPINC . '/theme-compat/embed.php'; 203 203 $actual = ob_get_clean(); 204 204
Note: See TracChangeset
for help on using the changeset viewer.