Then...
in: includes/templates/your_template/templates/tpl_events_calendar_default.php
Code:
<div class="event_image_outer">
<div class="event_image_inner">
<?php echo event_flink_small($event_array['image'], $event_array['title'], 'class="c1" hspace="0" vspace="0"'); ?>
</div>
<div class="clearLeft"> </div>
</div>
...will work.
For those who still want to utilize the auto size detection feature of zen carts' image functions, they should use:
Code:
<div class="event_image_outer">
<div class="event_image_inner">
<?php echo event_flink_small($event_array['image'], $event_array['title'], 'class="c1" hspace="0" vspace="0"',true); ?>
</div>
<div class="clearLeft"> </div>
</div>