Browse Source

Fixed PHP manual link language [skip ci]

tags/2.0.12
Alexander Makarov 8 years ago
parent
commit
eed00dc33d
No known key found for this signature in database
GPG Key ID: 3617B79C6A325E4A
  1. 2
      framework/caching/MemCache.php

2
framework/caching/MemCache.php

@ -315,7 +315,7 @@ class MemCache extends Cache
$expire = $duration > 0 ? $duration + time() : 0;
// Memcached::setMulti() returns boolean
// @see http://php.net/manual/ru/memcached.setmulti.php
// @see http://php.net/manual/en/memcached.setmulti.php
return $this->_cache->setMulti($data, $expire) ? [] : array_keys($data);
} else {
return parent::setValues($data, $duration);

Loading…
Cancel
Save