Browse Source

ne need to check twice if $row['share_with'] is set

tags/v8.1RC2
Bjoern Schiessle 9 years ago
parent
commit
a288d0eea3
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      lib/private/share/share.php

+ 1
- 1
lib/private/share/share.php View File

@@ -1705,7 +1705,7 @@ class Share extends Constants {
// Add display names to result
$row['share_with_displayname'] = $row['share_with'];
if ( isset($row['share_with']) && $row['share_with'] != '' &&
isset($row['share_with']) && $row['share_type'] === self::SHARE_TYPE_USER) {
$row['share_type'] === self::SHARE_TYPE_USER) {
$row['share_with_displayname'] = \OCP\User::getDisplayName($row['share_with']);
} else if(isset($row['share_with']) && $row['share_with'] != '' &&
$row['share_type'] === self::SHARE_TYPE_REMOTE) {

Loading…
Cancel
Save