diff options
author | James Walker <walkah@walkah.net> | 2010-10-21 12:20:14 -0400 |
---|---|---|
committer | James Walker <walkah@walkah.net> | 2010-10-21 12:20:14 -0400 |
commit | 8ac8f3d2dc95a437dea7dec2d26f09a364734a9b (patch) | |
tree | 1eae3816b00d64aad3a5b42f924f3bec705ebabb /classes | |
parent | cb74822e7ad0d03fa0b4dbc3b9c4c14778ba3841 (diff) |
Memcache::set() 3rd param should be flags (4th is expire). This throws a "2 lowest bytes reserved" error in Memcache > 3.0.3
Diffstat (limited to 'classes')
-rw-r--r-- | classes/Status_network_tag.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/Status_network_tag.php b/classes/Status_network_tag.php index a5893c114..3398ac8c8 100644 --- a/classes/Status_network_tag.php +++ b/classes/Status_network_tag.php @@ -99,7 +99,7 @@ class Status_network_tag extends Safe_DataObject if (Status_network::$cache) { $packed = implode('|', $result); - Status_network::$cache->set($key, $packed, 3600); + Status_network::$cache->set($key, $packed, 0, 3600); } return $result; |