yingzi 1 ano atrás
pai
commit
6800eb5280
1 arquivos alterados com 1 adições e 4 exclusões
  1. 1 4
      Mall/Framework/Cache/AbstractStorage.Class.php

+ 1 - 4
Mall/Framework/Cache/AbstractStorage.Class.php

@@ -20,13 +20,10 @@ abstract class AbstractStorage implements StorageInterface
         $prefix = FALSE;
         $prefix = FALSE;
 
 
         if ($this->options['prefix']) {
         if ($this->options['prefix']) {
-            var_dump($this->options['prefix']);
-            $prefix = str_replace(':', '', $this->options['prefix']) . ':';
-            
+            $prefix = str_replace(':', '', $this->options['prefix']) . '::';
         }
         }
 
 
         $this->prefix = $prefix ?: $this->prefix;
         $this->prefix = $prefix ?: $this->prefix;
         
         
-        var_dump($this->prefix);
     }
     }
 }
 }