I found that the template Original does not contain the Class
information. I added the information as it appeared to the Original_B2B template.
This seems to have fixed the problem.
class contentBoxFooter extends tableBox {
function contentBoxFooter($contents, $left_corner = true, $right_corner = true, $right_arrow = false) {
$this->table_cellpadding = '0';
if ($left_corner) {
$left_corner = tep_image(DIR_WS_IMAGES. 'pixel_trans.gif');
} else {
$left_corner = tep_image(DIR_WS_IMAGES. 'pixel_trans.gif');
}
if ($right_arrow) {
$right_arrow = '<a href="' . $right_arrow . '">' . tep_image(DIR_WS_TEMPLATES . TEMPLATE_NAME . '/images/infobox/arrow_right.gif', ICON_ARROW_RIGHT) . '</a>';
} else {
$right_arrow = '';
}
if ($right_corner) {
$right_corner = $right_arrow . tep_image(DIR_WS_IMAGES. 'pixel_trans.gif');
} else {
$right_corner = $right_arrow . tep_image(DIR_WS_IMAGES. 'pixel_trans.gif');
}
$info_box_contents = array();
$info_box_contents[] = array(array('params' => ' class="infoBoxHeading"', 'text' => $left_corner),
array('params' => ' width="100%" ', 'text' => $contents[0]['text']),
array('params' => ' class="infoBoxHeading" nowrap', 'text' => $right_corner));
$this->tableBox($info_box_contents, true);
}
}