2
0
forked from Wavyzz/dolibarr
Files
dolibarr-fork/htdocs/includes/phpoffice/PhpSpreadsheet/Chart/Renderer/Polyfill.php
2019-01-21 14:06:01 +01:00

10 lines
218 B
PHP

<?php
// This is a dirty workaround to output JpGraph charts even when antialiasing is not available
if (!function_exists('imageantialias')) {
function imageantialias(...$args)
{
// Do nothing
}
}