Преглед на файлове

Merge pull request #372 from jfcherng/fix-php73

Fix PHP 7.3 warning: "continue" targeting switch is equivalent to "break"
walkor преди 7 години
родител
ревизия
3e564e29bf
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      Protocols/Http.php

+ 1 - 1
Protocols/Http.php

@@ -565,7 +565,7 @@ class Http
                                 'file_data' => $boundary_value,
                                 'file_size' => strlen($boundary_value),
                             );
-                            continue;
+                            continue 2;
                         } // Is post field.
                         else {
                             // Parse $_POST.