Skip to content

Commit 408b32b

Browse files
committed
Merge pull request #96 from sfriel/final
fix for bug Undefined property: phpfastcache_memcache::$option
2 parents 7714e3b + cc83d11 commit 408b32b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

phpfastcache/3.0.0/drivers/memcache.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ function __construct($config = array()) {
3535
}
3636

3737
function connectServer() {
38-
$server = $this->option['memcache'];
38+
$server = $this->config['memcache'];
3939
if(count($server) < 1) {
4040
$server = array(
4141
array("127.0.0.1",11211),

0 commit comments

Comments
 (0)