}
if ($path !== false && !is_writable($path)) {
$path = false;
- debugging('The given file cache store path is not writable. '.$path, DEBUG_DEVELOPER);
+ debugging('The file cache store path is not writable for `'.$name.'`', DEBUG_DEVELOPER);
}
} else {
$path = make_cache_directory('cachestore_file/'.preg_replace('#[^a-zA-Z0-9\.\-_]+#', '', $name));
* @return bool
*/
public function is_ready() {
- return ($this->path !== null);
+ return $this->isready;
}
/**