Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0e7b5fb

Browse files
committed
fixed CS
1 parent 08757db commit 0e7b5fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/HttpFoundation/Response.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ public function prepare(Request $request)
258258
* @link http://support.microsoft.com/kb/323308
259259
*/
260260
if (false !== stripos($this->headers->get('Content-Disposition'), 'attachment') && preg_match('/MSIE (.*?);/i', $request->server->get('HTTP_USER_AGENT'), $match) == 1 && true === $request->isSecure()) {
261-
if(intval(preg_replace("/(MSIE )(.*?);/", "$2", $match[0])) < 9) {
261+
if (intval(preg_replace("/(MSIE )(.*?);/", "$2", $match[0])) < 9) {
262262
$this->headers->remove('Cache-Control');
263263
}
264264
}

0 commit comments

Comments
 (0)