From: Michael M Slusarz Date: Sun, 21 Nov 2010 01:07:01 +0000 (-0700) Subject: Silence decompression errors X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=16acbc408f441f6aa736ee004968d3b230b2cadf;p=horde.git Silence decompression errors --- diff --git a/framework/Cache/lib/Horde/Cache.php b/framework/Cache/lib/Horde/Cache.php index 7507c1fea..30a7c3d39 100644 --- a/framework/Cache/lib/Horde/Cache.php +++ b/framework/Cache/lib/Horde/Cache.php @@ -105,7 +105,7 @@ class Horde_Cache return ($this->_params['compress'] && ($res !== false)) // lzf_decompress() returns false on error - ? lzf_decompress($res) + ? @lzf_decompress($res) : $res; }