I figured out the issue! It was a problem inside of the TPL_ ezpages_bar_footer.php file. The over ride from the template was defined as:
Code:
<?php echo ($i <= $n ? EZPAGES_SEPARATOR_FOOTER : '') . "\n"; ?>
<a href="<?php echo $var_linksList[$i]['/includes/templates/theme051/templates/link']; ?>"><?php echo $var_linksList[$i]['name']; ?></a>
On lines 21 - 22 - and 23
IT should have been
Code:
<?php echo ($i <= $n ? EZPAGES_SEPARATOR_FOOTER : '') . "\n"; ?>
<a href="<?php echo $var_linksList[$i]['link']; ?>"><?php echo $var_linksList[$i]['name']; ?></a>
Thanks For the help though! This forum rocks and you are the bomb!