xcache_unset_by_prefix() returns feedback, return it.

This commit is contained in:
Andreas Fischer 2013-08-15 03:36:42 +02:00
parent 799106db81
commit 341d9caf79
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ class XCache extends Cache {
public function clear($prefix='') {
if (function_exists('xcache_unset_by_prefix')) {
xcache_unset_by_prefix($this->getNamespace().$prefix);
return xcache_unset_by_prefix($this->getNamespace().$prefix);
} else {
// Since we can not clear by prefix, we just clear the whole cache.
xcache_clear_cache(\XC_TYPE_VAR, 0);