diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-09-12 07:48:00 -0700 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-09-12 07:48:00 -0700 |
commit | c7ca86799b2608609ead7ecd2d84d0bbd47c6548 (patch) | |
tree | 2c6ad385dba6a944bf396dbb69e32d4fb7074c7e /apps/files/ajax | |
parent | b7205d97d7797daf057d47a5a07d2bad3b0db4da (diff) | |
parent | 9d661eab23f9ba284e4a5060b5de5d868b330d45 (diff) | |
download | nextcloud-server-c7ca86799b2608609ead7ecd2d84d0bbd47c6548.tar.gz nextcloud-server-c7ca86799b2608609ead7ecd2d84d0bbd47c6548.zip |
Merge pull request #4816 from owncloud/fixing-723-master
Fixing 723 master
Diffstat (limited to 'apps/files/ajax')
-rw-r--r-- | apps/files/ajax/list.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/files/ajax/list.php b/apps/files/ajax/list.php index c50e96b2429..14ed43cbb3a 100644 --- a/apps/files/ajax/list.php +++ b/apps/files/ajax/list.php @@ -34,6 +34,7 @@ if($doBreadcrumb) { $files = array(); foreach( \OC\Files\Filesystem::getDirectoryContent( $dir ) as $i ) { $i["date"] = OCP\Util::formatDate($i["mtime"] ); + $i['icon'] = \OCA\files\lib\Helper::determineIcon($i); $files[] = $i; } |