1
0

Update Cache-Lite to 1.8.3

Compatibility with PHP 7.4
This commit is contained in:
onli
2021-03-05 08:21:36 +01:00
parent 54efde550e
commit f7d0e4530c
4 changed files with 46 additions and 4 deletions

View File

@@ -31,6 +31,16 @@ class Cache_Lite_Output extends Cache_Lite
parent::__construct($options);
}
/**
* PHP4 constructor for backwards compatibility with older code
*
* @param array $options Options
*/
function Cache_Lite_Output($options = array(NULL))
{
self::__construct($options);
}
/**
* Start the cache
*