split up reset()['path'] to make it compatible with older PHP versions

remotes/origin/stable6
Bjoern Schiessle 13 years ago
parent 99738ae0bc
commit e7dc6b21c8
  1. 3
      apps/files_sharing/lib/api.php

@ -132,7 +132,8 @@ class Api {
// if there are no shares than there are also no reshares
if (count($shares) > 0) {
$ids = array();
$path = reset($shares)['path'];
$firstShare = reset($shares);
$path = $firstShare['path'];
foreach ($shares as $share) {
$ids[] = $share['id'];
}

Loading…
Cancel
Save