Skip to content

Commit

Permalink
[stable9.1] Use explode() instead of split() - fixes #25483 (#25488)
Browse files Browse the repository at this point in the history
  • Loading branch information
DeepDiver1975 committed Jul 17, 2016
1 parent 0aef283 commit 2050569
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/private/legacy/files.php
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ public static function get($dir, $files, $params = null) {
* @return array $rangeArray ('from'=>int,'to'=>int), ...
*/
private static function parseHttpRangeHeader($rangeHeaderPos, $fileSize) {
$rArray=split(',', $rangeHeaderPos);
$rArray=explode(',', $rangeHeaderPos);
$minOffset = 0;
$ind = 0;

Expand Down

0 comments on commit 2050569

Please sign in to comment.