Avoiding some error messages

2022.09-rc
Michael 2017-01-20 22:22:05 +00:00
rodzic 8939a25502
commit 68115581d0
1 zmienionych plików z 3 dodań i 2 usunięć

Wyświetl plik

@ -64,8 +64,9 @@ function ref_session_write($id, $data) {
$default_expire = time() + 300; $default_expire = time() + 300;
$memcache = cache::memcache(); $memcache = cache::memcache();
if (is_object($memcache)) { $a = get_app();
$memcache->set(get_app()->get_hostname().":session:".$id, $data, MEMCACHE_COMPRESSED, $expire); if (is_object($memcache) AND is_object($a)) {
$memcache->set($a->get_hostname().":session:".$id, $data, MEMCACHE_COMPRESSED, $expire);
return true; return true;
} }