Skip to content

Commit

Permalink
Merge pull request #5811 from zero-24/patch-13
Browse files Browse the repository at this point in the history
Fix wincache notice again
  • Loading branch information
wilsonge committed Feb 4, 2015
2 parents 494a988 + 8d67739 commit a33864b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions libraries/joomla/cache/storage/wincache.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class JCacheStorageWincache extends JCacheStorage
*/
public function get($id, $group, $checkTime = true)
{
$cache_id = $this->_getCacheId($id, $group);
$cache_id = $this->_getCacheId($id, $group);
$cache_content = wincache_ucache_get($cache_id);

return $cache_content;
Expand Down Expand Up @@ -137,8 +137,8 @@ public function remove($id, $group)
public function clean($group, $mode = null)
{
$allinfo = wincache_ucache_info();
$keys = $allinfo['cache_entries'];
$secret = $this->_hash;
$keys = $allinfo['ucache_entries'];
$secret = $this->_hash;

foreach ($keys as $key)
{
Expand All @@ -161,8 +161,8 @@ public function clean($group, $mode = null)
public function gc()
{
$allinfo = wincache_ucache_info();
$keys = $allinfo['cache_entries'];
$secret = $this->_hash;
$keys = $allinfo['ucache_entries'];
$secret = $this->_hash;

foreach ($keys as $key)
{
Expand Down

0 comments on commit a33864b

Please sign in to comment.