Browse Source

Fixed array syntax to work with PHP 5.3

It seems that array brackets are only supported starting with PHP 5.4.
Fixed the array brackets to be compatible and not cause a syntax error
in PHP 5.3.
tags/v6.0.0alpha2
Vincent Petry 10 years ago
parent
commit
e257c3f27c
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      core/ajax/share.php

+ 1
- 1
core/ajax/share.php View File

@@ -104,7 +104,7 @@ if (isset($_POST['action']) && isset($_POST['itemType']) && isset($_POST['itemSo
}

// don't send a mail to the user who shared the file
$recipientList = array_diff($recipientList, [\OCP\User::getUser()]);
$recipientList = array_diff($recipientList, array(\OCP\User::getUser()));

// send mail to all recipients with an email address
foreach ($recipientList as $recipient) {

Loading…
Cancel
Save