|
|
@@ -485,7 +485,7 @@ class Zend_Cache_Core
|
|
|
$prefix = & $this->_options['cache_id_prefix'];
|
|
|
$prefixLen = strlen($prefix);
|
|
|
foreach ($ids as &$id) {
|
|
|
- if (strpos($id, $this->_options['cache_id_prefix']) === 0) {
|
|
|
+ if (strpos($id, $prefix) === 0) {
|
|
|
$id = substr($id, $prefixLen);
|
|
|
}
|
|
|
}
|
|
|
@@ -518,7 +518,7 @@ class Zend_Cache_Core
|
|
|
$prefix = & $this->_options['cache_id_prefix'];
|
|
|
$prefixLen = strlen($prefix);
|
|
|
foreach ($ids as &$id) {
|
|
|
- if (strpos($id, $this->_options['cache_id_prefix']) === 0) {
|
|
|
+ if (strpos($id, $prefix) === 0) {
|
|
|
$id = substr($id, $prefixLen);
|
|
|
}
|
|
|
}
|
|
|
@@ -551,7 +551,7 @@ class Zend_Cache_Core
|
|
|
$prefix = & $this->_options['cache_id_prefix'];
|
|
|
$prefixLen = strlen($prefix);
|
|
|
foreach ($ids as &$id) {
|
|
|
- if (strpos($id, $this->_options['cache_id_prefix']) === 0) {
|
|
|
+ if (strpos($id, $prefix) === 0) {
|
|
|
$id = substr($id, $prefixLen);
|
|
|
}
|
|
|
}
|
|
|
@@ -578,7 +578,7 @@ class Zend_Cache_Core
|
|
|
$prefix = & $this->_options['cache_id_prefix'];
|
|
|
$prefixLen = strlen($prefix);
|
|
|
foreach ($ids as &$id) {
|
|
|
- if (strpos($id, $this->_options['cache_id_prefix']) === 0) {
|
|
|
+ if (strpos($id, $prefix) === 0) {
|
|
|
$id = substr($id, $prefixLen);
|
|
|
}
|
|
|
}
|