- Timestamp:
- 04/05/2021 10:36:17 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-filesystem-direct.php
r49936 r50657 506 506 */ 507 507 public function touch( $file, $time = 0, $atime = 0 ) { 508 if ( 0 == $time ) {508 if ( 0 === $time ) { 509 509 $time = time(); 510 510 } 511 511 512 if ( 0 == $atime ) {512 if ( 0 === $atime ) { 513 513 $atime = time(); 514 514 } … … 631 631 } 632 632 633 if ( $limit_file && $struc['name'] != $limit_file ) {633 if ( $limit_file && $struc['name'] !== $limit_file ) { 634 634 continue; 635 635 }
Note: See TracChangeset
for help on using the changeset viewer.