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

[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;
 	}