mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-08 18:48:22 +01:00
10 lines
218 B
PHP
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
|
|
}
|
|
}
|