Skip to content

Commit 401e272

Browse files
committed
Updated version number and ensured quoting consistency.
1 parent 2ebd99c commit 401e272

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

server/php/upload.class.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
/*
3-
* jQuery File Upload Plugin PHP Class 5.18.2
3+
* jQuery File Upload Plugin PHP Class 5.18.3
44
* https://github.com/blueimp/jQuery-File-Upload
55
*
66
* Copyright 2010, Sebastian Tschan
@@ -665,7 +665,7 @@ public function post($print_response = true) {
665665
// Parse the Content-Range header, which has the following form:
666666
// Content-Range: bytes 0-524287/2000000
667667
$content_range = isset($_SERVER['HTTP_CONTENT_RANGE']) ?
668-
preg_split("/[^0-9]+/", $_SERVER['HTTP_CONTENT_RANGE']) : null;
668+
preg_split('/[^0-9]+/', $_SERVER['HTTP_CONTENT_RANGE']) : null;
669669
$size = $content_range ? $content_range[3] : null;
670670
$info = array();
671671
if ($upload && is_array($upload['tmp_name'])) {

0 commit comments

Comments
 (0)