Skip to content

Commit 716273a

Browse files
[stable9.1] Use explode() instead of split() - fixes #25483 (#25488) (#25499)
1 parent 9f21176 commit 716273a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/private/legacy/files.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ public static function get($dir, $files, $params = null) {
192192
* @return array $rangeArray ('from'=>int,'to'=>int), ...
193193
*/
194194
private static function parseHttpRangeHeader($rangeHeaderPos, $fileSize) {
195-
$rArray=split(',', $rangeHeaderPos);
195+
$rArray=explode(',', $rangeHeaderPos);
196196
$minOffset = 0;
197197
$ind = 0;
198198

0 commit comments

Comments
 (0)