split up reset()['path'] to make it compatible with older PHP versions
This commit is contained in:
parent
99738ae0bc
commit
e7dc6b21c8
|
@ -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…
Reference in New Issue