Jelajahi Sumber

cosmetic tweak

Lukas Kahwe Smith 13 tahun lalu
induk
melakukan
d3f137b9c1
1 mengubah file dengan 1 tambahan dan 1 penghapusan
  1. 1 1
      src/Symfony/Component/HttpFoundation/Request.php

+ 1 - 1
src/Symfony/Component/HttpFoundation/Request.php

@@ -1029,7 +1029,7 @@ class Request
             // Cut off any q-value that might come after a semi-colon
             if (preg_match('/;\s*(q=.*$)/', $value, $match)) {
                 $q     = (float) substr(trim($match[1]), 2);
-                $value = trim(substr($value, 0, -1*strlen($match[0])));
+                $value = trim(substr($value, 0, -strlen($match[0])));
             } else {
                 $q = 1;
             }