Changeset 42617
- Timestamp:
- 01/30/2018 12:33:03 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/widgets/text-widget.php
r42613 r42617 30 30 * Clean up global scope. 31 31 * 32 * @global WP_Scripts $wp_scripts 33 * @global WP_Styles $wp_style 32 * @global WP_Scripts $wp_scripts 33 * @global WP_Styles $wp_style 34 * @global WP_Customize_Manager $wp_customize 34 35 */ 35 36 function clean_up_global_scope() { 36 global $wp_scripts, $wp_styles ;37 global $wp_scripts, $wp_styles, $wp_customize; 37 38 parent::clean_up_global_scope(); 38 $wp_scripts = null; 39 $wp_styles = null; 39 $wp_scripts = null; 40 $wp_styles = null; 41 $wp_customize = null; 40 42 } 41 43
Note: See TracChangeset
for help on using the changeset viewer.