mirror of
https://github.com/nextcloud/server.git
synced 2026-06-08 16:26:59 -04:00
[master] Use explode() instead of split()
Sync from https://github.com/owncloud/core/pull/25488
This commit is contained in:
parent
f414c664f2
commit
4f90447150
1 changed files with 1 additions and 1 deletions
|
|
@ -192,7 +192,7 @@ class OC_Files {
|
|||
* @return array $rangeArray ('from'=>int,'to'=>int), ...
|
||||
*/
|
||||
private static function parseHttpRangeHeader($rangeHeaderPos, $fileSize) {
|
||||
$rArray=split(',', $rangeHeaderPos);
|
||||
$rArray=explode(',', $rangeHeaderPos);
|
||||
$minOffset = 0;
|
||||
$ind = 0;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue