Edit /montezuma/includes/thumb.php and change line 21 from
HTML Code:
$id = get_the_id() . '_' . $width . '_' . $height . '_' . ( $crop === FALSE ? '0' : '1' );
HTML Code:
$post_id = get_the_id(); $id = $post_id . '_' . $width . '_' . $height . '_' . ( $crop === FALSE ? '0' : '1' );
HTML Code:
$this_thumb = '<a href="'.get_permalink( $id ).'">'.$this_thumb.'</a>';
HTML Code:
$this_thumb = '<a href="'.get_permalink($post_id).'">'.$this_thumb.'</a>';