Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorThomas Müller <DeepDiver1975@users.noreply.github.com>2016-07-20 15:27:39 +0300
committerGitHub <noreply@github.com>2016-07-20 15:27:39 +0300
commit9d15d4e5231afe5b6cba4dadd51fde2d60957021 (patch)
treea9b138b7ec6042d8a41b127cce137bdc830488f4 /lib
parent6f4931a085bcd26346bdfdf7c5a6f832df78d473 (diff)
[stable9] Use explode() instead of split() - fixes #25483 (#25488) (#25500)
Diffstat (limited to 'lib')
-rw-r--r--lib/private/files.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/files.php b/lib/private/files.php
index 639fd30b554..dbed4702273 100644
--- a/lib/private/files.php
+++ b/lib/private/files.php
@@ -191,7 +191,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;