Hi,

Hopefully this is the right forum for my problem...I have an error when using additional images on a product which wides out the lower half of my page. The debug file says:

Code:
[01-Mar-2013 12:39:00] PHP Fatal error:  Call to a member function MoveNext() on a non-object in /home4/bullybaz/public_html/includes/templates/classic/templates/tpl_modules_additional_images.php on line 22
which would be the line in bold red below...

Code:
require(DIR_WS_MODULES . zen_get_module_directory('additional_images.php'));
 ?>
 <?php
  if ($flag_show_product_info_additional_images != 0 && $num_images > 0) {
  ?>
<div id="productAdditionalImages">
<?php
	while(!$additional->EOF) {
		echo '<div class="additional-images">'.zen_image(DIR_WS_IMAGES . $additional->fields['additional_image'], '', ADDITIONAL_SMALL_IMAGE_WIDTH, ADDITIONAL_SMALL_IMAGE_HEIGHT).'</div>';
		$additional->MoveNext();
	}
 ?>
  require($template->get_template_dir('tpl_columnar_display.php',DIR_WS_TEMPLATE, $current_page_base,'common'). '/tpl_columnar_display.php'); ?>
</div>
<?php 
  }
?>
and I am completely clueless as to what I need to do to fix this??? Help, please, thanks in advance!