Polyfill.php 218 B

123456789
  1. <?php
  2. // This is a dirty workaround to output JpGraph charts even when antialiasing is not available
  3. if (!function_exists('imageantialias')) {
  4. function imageantialias(...$args)
  5. {
  6. // Do nothing
  7. }
  8. }