Skip to content

Commit e9fa7ac

Browse files
committed
Merge pull request #101 from asabirov/patch-2
Fix Undefined property: phpfastcache_memcached::$option
2 parents 408b32b + 9c06904 commit e9fa7ac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

phpfastcache/3.0.0/drivers/memcached.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ function connectServer() {
3838
return false;
3939
}
4040

41-
$s = $this->option['memcache'];
41+
$s = $this->config['memcache'];
4242
if(count($s) < 1) {
4343
$s = array(
4444
array("127.0.0.1",11211,100),
@@ -126,4 +126,4 @@ function driver_isExisting($keyword) {
126126

127127

128128

129-
}
129+
}

0 commit comments

Comments
 (0)