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