merge mass tagger

This commit is contained in:
Shish
2012-01-31 14:28:34 +00:00
11 changed files with 178 additions and 6 deletions

View File

@@ -187,7 +187,7 @@ class MemcacheCache implements CacheEngine {
var $memcache=null, $hits=0, $misses=0;
public function __construct($args) {
$hp = split(":", $args);
$hp = explode(":", $args);
if(class_exists("Memcache")) {
$this->memcache = new Memcache;
@$this->memcache->pconnect($hp[0], $hp[1]);