Merge pull request #1539 from owncloud/fixing-1508-master
missing comma in sql statement
This commit is contained in:
commit
96042f1e5b
1 changed files with 1 additions and 1 deletions
|
@ -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`';
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue