Skip to content

Commit

Permalink
silly bug
Browse files Browse the repository at this point in the history
  • Loading branch information
weyrick committed Feb 4, 2011
1 parent 397bc61 commit 4ade9cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/smCacheManager.inc
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ class SM_cacheManager extends SM_object {
public function set($key, $val, $ttl=-1) {
if ($ttl < 0)
$ttl = $this->ttl;
return $this->mc->set($key, val, $ttl);
return $this->mc->set($key, $val, $ttl);
}

public function get($key) {
Expand Down

0 comments on commit 4ade9cc

Please sign in to comment.