Skip to content

Commit 64a8134

Browse files
authored
Merge pull request #431 from DavidGoodwin/fix-430
Fix memcache::set default argument from the deprecated null to false
2 parents 2e1954b + 519a6bf commit 64a8134

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Stash/Driver/Sub/Memcache.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public function set($key, $value, $expire = null)
6565
return true;
6666
}
6767

68-
return $this->memcached->set($key, array('data' => $value, 'expiration' => $expire), null, $expire);
68+
return $this->memcached->set($key, array('data' => $value, 'expiration' => $expire), false, $expire);
6969
}
7070

7171
/**

0 commit comments

Comments
 (0)