// XXX: made public so Status_network_tag can eff with it
public static $cache = null;
- static $cacheInitialized = false;
+ public static $cacheInitialized = false;
static $base = null;
static $wildcard = null;
function decache()
{
$key = 'status_network_tags:' . $this->site_id;
- if (Status_network::$cache) {
- Status_network::$cache->delete($key);
+ if (Status_network::$cache || Status_network::$cacheInitialized) {
+ // FIXME: this was causing errors, so I'm hiding them.
+ // I'm a big chicken and lazy.
+ @Status_network::$cache->delete($key);
}
}