diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-03-17 18:56:01 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-03-17 18:56:01 +0000 |
commit | 208fc9db683c51e3bcf1f24d1e5e0200e0f32d96 (patch) | |
tree | 68ef623d8c6e13cc15fc2fe6dbe13a32585b9fa6 /kohana/libraries/drivers/Cache.php | |
parent | 3f87c16223d7aca44f432efe99b35ab7afb0dbe4 (diff) |
Update Kohana to r4081.
This resolves ticket http://dev.kohanaphp.com/ticket/1156
1156: "Table prefix gets append to column name"
All tests pass.
Diffstat (limited to 'kohana/libraries/drivers/Cache.php')
-rw-r--r-- | kohana/libraries/drivers/Cache.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kohana/libraries/drivers/Cache.php b/kohana/libraries/drivers/Cache.php index 0e825bcf..6f24ccac 100644 --- a/kohana/libraries/drivers/Cache.php +++ b/kohana/libraries/drivers/Cache.php @@ -14,7 +14,7 @@ interface Cache_Driver { /** * Set a cache item. */ - public function set($id, $data, $tags, $lifetime); + public function set($id, $data, array $tags = NULL, $lifetime); /** * Find all of the cache ids for a given tag. |