diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2013-02-08 13:49:26 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2013-02-08 13:49:26 +0100 |
commit | 11584474992e06cb5ce9330777e881505f6c04e5 (patch) | |
tree | c8bac890fbd95971cd4d3adbaa5d636f18fe591d | |
parent | 59249ebc0ca3731711ee99d591742164b32d0cdd (diff) | |
download | nextcloud-server-11584474992e06cb5ce9330777e881505f6c04e5.tar.gz nextcloud-server-11584474992e06cb5ce9330777e881505f6c04e5.zip |
missing comma in sql statement
-rw-r--r-- | lib/public/share.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/public/share.php b/lib/public/share.php index d46bee26dd4..af2a538e252 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -704,7 +704,7 @@ class Share { $select = '`*PREFIX*share`.`id`, `item_type`, `*PREFIX*share`.`parent`, `uid_owner`, ' .'`share_type`, `share_with`, `file_source`, `path`, `file_target`, ' .'`permissions`, `expiration`, `storage`, `*PREFIX*filecache`.`parent` as `file_parent`, ' - .'`name` `mtime`, `mimetype`, `mimepart`, `size`, `encrypted`, `etag`'; + .'`name`, `mtime`, `mimetype`, `mimepart`, `size`, `encrypted`, `etag`'; } else { $select = '`*PREFIX*share`.`id`, `item_type`, `item_source`, `item_target`, `*PREFIX*share`.`parent`, `share_type`, `share_with`, `uid_owner`, `file_source`, `path`, `file_target`, `permissions`, `stime`, `expiration`, `token`'; } |