Remove php5 syntax

git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@10733 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
flyskyko 2012-05-24 06:00:39 +00:00
parent f0034715b2
commit a3193e105b

View file

@ -47,7 +47,7 @@ class CacheFile extends CacheBase {
* @param string $key The key that will be associated with the item. * @param string $key The key that will be associated with the item.
* @return string Returns cache file path * @return string Returns cache file path
*/ */
private function getCacheFileName($key){ function getCacheFileName($key){
return $this->cache_dir . str_replace(':', '_', $key); return $this->cache_dir . str_replace(':', '_', $key);
} }