From: Aaron Date: Fri, 31 Aug 2012 23:24:19 +0000 (-0700) Subject: Cleaned up some whitespace from 45b9073b61d3aa569adb8cff46531a5b06b8bb7a X-Git-Tag: 1.31.0-rc.0~22499 X-Git-Url: https://git.cyclocoop.org/%27.WWW_URL.%27admin/?a=commitdiff_plain;h=a99aa9b00787b60a3f56e207566d7e6936d2ba4d;p=lhc%2Fweb%2Fwiklou.git Cleaned up some whitespace from 45b9073b61d3aa569adb8cff46531a5b06b8bb7a Change-Id: I42e376d80d6cc483b96e815d63b19aee78fe1127 --- diff --git a/includes/filebackend/FileBackend.php b/includes/filebackend/FileBackend.php index 2ab765503f..ab8a327e89 100644 --- a/includes/filebackend/FileBackend.php +++ b/includes/filebackend/FileBackend.php @@ -1112,8 +1112,8 @@ abstract class FileBackend { * @return string */ final public static function makeContentDisposition( $type, $filename ) { - $type = strtolower( $type ); - $type = in_array( $type, array( 'inline', 'attachment' ) ) ? $type : 'inline'; + $type = strtolower( $type ); + $type = in_array( $type, array( 'inline', 'attachment' ) ) ? $type : 'inline'; return "$type; filename*=UTF-8''" . rawurlencode( basename( $filename ) ); }