Changes between Initial Version and Version 1 of Ticket #33480, comment 17
- Timestamp:
- 08/24/2015 06:30:09 AM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #33480, comment 17
initial v1 18 18 It should really do below to get the required (username) info: 19 19 {{{ 20 $username = $this->run_command(sprintf('stat -c %U%s', escapeshellarg($file)), true);20 $username = $this->run_command(sprintf('stat -c \'%U\' %s', escapeshellarg($file)), true); 21 21 return $username; 22 22 }}}