소스 검색

[FileCache] Change parameters to lower-case

This prevents creating multiple cache files for the same request.
logmanoriginal 8 년 전
부모
커밋
5639b158e7
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      caches/FileCache.php

+ 1 - 1
caches/FileCache.php

@@ -55,7 +55,7 @@ class FileCache implements CacheInterface {
 	* @return self
 	*/
 	public function setParameters(array $param){
-		$this->param = $param;
+		$this->param = array_map('strtolower', $param);
 
 		return $this;
 	}