X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=plugins%2FMinify%2Fminify.php;h=b7bee7c8815e572b6a4fa301a7b608fe951383df;hb=9e78c631fb8afc09e29ace1380c335dcd7f93341;hp=9a59c4223c8ec1f613b995eefc01a66275a748ef;hpb=78ed0348b0eaaebf7a51d55adc7e746cc5b43bbf;p=quix0rs-gnu-social.git diff --git a/plugins/Minify/minify.php b/plugins/Minify/minify.php index 9a59c4223c..b7bee7c881 100644 --- a/plugins/Minify/minify.php +++ b/plugins/Minify/minify.php @@ -46,16 +46,18 @@ class MinifyAction extends Action if(file_exists($this->file)) { return true; } else { + // TRANS: Client error displayed when not providing a valid path in parameter "f". $this->clientError(_m('The parameter "f" is not a valid path.'),404); return false; } }else{ + // TRANS: Client error displayed when not providing parameter "f". $this->clientError(_m('The parameter "f" is required but missing.'),500); return false; } } - function etag() + function etag() { if(isset($this->v)) { return "\"" . crc32($this->file . $this->v) . "\""; @@ -73,10 +75,10 @@ class MinifyAction extends Action function handle($args) { parent::handle($args); - - $c = common_memcache(); + + $c = Cache::instance(); if (!empty($c)) { - $cacheKey = common_cache_key(MinifyPlugin::cacheKey . ':' . $this->file . '?v=' . empty($this->v)?'':$this->v); + $cacheKey = Cache::key(MinifyPlugin::cacheKey . ':' . $this->file . '?v=' . empty($this->v)?'':$this->v); $out = $c->get($cacheKey); } if(empty($out)) { @@ -108,6 +110,7 @@ class MinifyAction extends Action header('Content-Type: ' . self::TYPE_CSS); break; default: + // TRANS: Client error displayed when trying to minify an unsupported file type. $this->clientError(_m('File type not supported.'),500); return false; }