mirror of
https://github.com/Karaka-Management/Resources.git
synced 2026-01-30 04:58:39 +00:00
10 lines
218 B
PHP
Executable File
10 lines
218 B
PHP
Executable File
<?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
|
|
}
|
|
}
|