fix cachejail->update

This commit is contained in:
Robin Appelman 2016-01-25 13:20:59 +01:00 committed by Morris Jobke
parent 1369f2c684
commit d7a777af3a
1 changed files with 1 additions and 1 deletions

View File

@ -113,7 +113,7 @@ class CacheJail extends CacheWrapper {
* @param array $data
*/
public function update($id, array $data) {
$this->cache->update($this->getSourcePath($id), $data);
$this->cache->update($id, $data);
}
/**