select statement always need to contain file_source respectively item_source

remotes/origin/ldap_group_count
Bjoern Schiessle 13 years ago
parent 65e3f63400
commit 3a731a01b1
  1. 4
      lib/private/share/share.php

@ -1523,9 +1523,9 @@ class Share extends \OC\Share\Constants {
$select = '*';
if ($format == self::FORMAT_STATUSES) {
if ($fileDependent) {
$select = '`*PREFIX*share`.`id`, `*PREFIX*share`.`parent`, `share_type`, `path`, `share_with`, `uid_owner`';
$select = '`*PREFIX*share`.`id`, `*PREFIX*share`.`parent`, `share_type`, `path`, `share_with`, `uid_owner` , `file_source`';
} else {
$select = '`id`, `parent`, `share_type`, `share_with`, `uid_owner`';
$select = '`id`, `parent`, `share_type`, `share_with`, `uid_owner`, `item_source`';
}
} else {
if (isset($uidOwner)) {

Loading…
Cancel
Save