- Timestamp:
- 05/26/2019 12:11:37 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-filesystem-direct.php
r45226 r45424 599 599 $struc['size'] = $this->size( $path . '/' . $entry ); 600 600 $struc['lastmodunix'] = $this->mtime( $path . '/' . $entry ); 601 $struc['lastmod'] = date( 'M j', $struc['lastmodunix'] );602 $struc['time'] = date( 'h:i:s', $struc['lastmodunix'] );601 $struc['lastmod'] = gmdate( 'M j', $struc['lastmodunix'] ); 602 $struc['time'] = gmdate( 'h:i:s', $struc['lastmodunix'] ); 603 603 $struc['type'] = $this->is_dir( $path . '/' . $entry ) ? 'd' : 'f'; 604 604
Note: See TracChangeset
for help on using the changeset viewer.