Changeset 46314
- Timestamp:
- 09/26/2019 12:36:20 AM (16 months ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-links-list-table.php
r46313 r46314 118 118 wp_dropdown_categories( $dropdown_options ); 119 119 submit_button( __( 'Filter' ), '', 'filter_action', false, array( 'id' => 'post-query-submit' ) ); 120 120 ?> 121 121 </div> 122 122 <?php -
trunk/tests/phpunit/tests/multisite/network.php
r46312 r46314 275 275 // activate the plugin sitewide 276 276 activate_plugin( $path, '', $network_wide = true ); 277 $active_plugins = wp_get_active_network_plugins();277 $active_plugins = wp_get_active_network_plugins(); 278 278 $this->assertEquals( array( WP_PLUGIN_DIR . '/hello.php' ), $active_plugins ); 279 279 -
trunk/tests/phpunit/tests/term/getTerms.php
r46312 r46314 174 174 wp_delete_term( $terms[0]->term_id, 'post_tag' ); 175 175 176 $num_queries = $wpdb->num_queries;176 $num_queries = $wpdb->num_queries; 177 177 $this->assertNotEquals( $time1, $time2 = wp_cache_get( 'last_changed', 'terms' ) ); 178 178
Note: See TracChangeset
for help on using the changeset viewer.