function Comment Missing

This commit is contained in:
Frédéric FRANCE
2018-08-31 21:39:23 +02:00
parent 7b1a705be4
commit ebcf43ec73
12 changed files with 134 additions and 39 deletions

View File

@@ -52,6 +52,12 @@ if (!$mode) $mode='config';
// used in library escpos maybe useful if php doesn't support gzdecode
if (!function_exists('gzdecode')) {
/**
* Gzdecode
*
* @param string $data data to deflate
* @return string data deflated
*/
function gzdecode($data)
{
return gzinflate(substr($data,10,-8));
@@ -450,4 +456,3 @@ if ($mode == 'template' && $user->admin)
// End of page
llxFooter();
$db->close();