- Timestamp:
- 08/07/2021 10:29:41 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/multisite/ms-files-rewriting.php
r51564 r51568 15 15 protected $suppress = false; 16 16 17 function set Up() {17 function set_up() { 18 18 global $wpdb; 19 parent::set Up();19 parent::set_up(); 20 20 $this->suppress = $wpdb->suppress_errors(); 21 21 … … 24 24 } 25 25 26 function tear Down() {26 function tear_down() { 27 27 global $wpdb; 28 28 29 29 $wpdb->suppress_errors( $this->suppress ); 30 30 31 parent::tear Down();31 parent::tear_down(); 32 32 } 33 33
Note: See TracChangeset
for help on using the changeset viewer.