Commit 0c95e0ed authored by Alex Ne's avatar Alex Ne

Коррекция

parent 5fbcc180
......@@ -38,7 +38,7 @@ class Memcache {
}
$key = $this->prefix . $key;
return $this->mcache->set(md5($key), $value, 0, $expire);
return $this->mcache->set($key, $value, 0, $expire);
}
/**
......@@ -50,7 +50,7 @@ class Memcache {
}
$key = $this->prefix . $key;
return $this->mcache->get(md5($key), 0);
return $this->mcache->get($key, 0);
}
}
?>
\ No newline at end of file
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment