diff options
author | Robin Appelman <icewind@owncloud.com> | 2012-11-04 21:12:18 +0100 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2012-11-04 21:12:18 +0100 |
commit | 4b940955ddb3266f625eae83da412a655efef319 (patch) | |
tree | 8ed6bb2fae2f5fa3cb61c630e3dc98af5e99d656 /apps/files/ajax | |
parent | 8a6bb7965d96b1c4297da8f5dbc9644fec7aeb0f (diff) | |
parent | 555dd5c261e52cf64f5a8eb6f4d03635cedafbbe (diff) | |
download | nextcloud-server-4b940955ddb3266f625eae83da412a655efef319.tar.gz nextcloud-server-4b940955ddb3266f625eae83da412a655efef319.zip |
merge master into filesystem
Diffstat (limited to 'apps/files/ajax')
-rw-r--r-- | apps/files/ajax/autocomplete.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/ajax/autocomplete.php b/apps/files/ajax/autocomplete.php index d0dab9c2bd7..7613a1cb77a 100644 --- a/apps/files/ajax/autocomplete.php +++ b/apps/files/ajax/autocomplete.php @@ -44,7 +44,7 @@ if(\OC\Files\Filesystem::file_exists($base) and \OC\Files\Filesystem::is_dir($ba if(substr(strtolower($file), 0, $queryLen)==$query) { $item=$base.$file; if((!$dirOnly or \OC\Files\Filesystem::is_dir($item))) { - $files[]=(object)array('id'=>$item,'label'=>$item,'name'=>$item); + $files[]=(object)array('id'=>$item, 'label'=>$item, 'name'=>$item); } } } |