How to fix:
File: KT_image.class.php
Find:
Code: Select all
$tmp['top']['left'] = $tmp['bottom']['left'] .= 'West';
$tmp['top']['right'] = $tmp['bottom']['right'] .= 'East';
Code: Select all
$tmp['top']['left'] .= 'West';
$tmp['bottom']['left'] .= 'West';
$tmp['top']['right'] .= 'East';
$tmp['bottom']['right'] .= 'East';