Hi every one !
I got this error:
Parse error: parse error in c:\program files\easyphp1-8\home\fonex\includes\templates\template_default\sideboxes\tpl_order_history.php
on line 13
for the order history sidebox
<?php
/**
* Side Box Template
*
* @package templateSystem
* @copyright Copyright 2003-2005 Zen Cart Development Team
* @copyright Portions Copyright 2003 osCommerce
* @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
* @version $Id: tpl_order_history.php 2975 2006-02-05 19:33:51Z birdbrain $
*/
$content = "";
$content .= '<div id="' . str_replace('_', '-', $box_id . 'Content') . '" class="sideBoxContent">' . "\n"
$content = '<ul class="orderHistList">' . "\n" ;
for ($i=1; $i<=sizeof($customer_orders); $i++) {
$content .= '<li><a href="' . zen_href_link(zen_get_info_page($customer_orders[$i]['id']), 'products_id=' . $customer_orders[$i]['id']) . '">' . $customer_orders[$i]['name'] . '</a> <a href="' . zen_href_link(basename($PHP_SELF), zen_get_all_get_params(array('action')) . 'action=cust_order&pid=' . $customer_orders[$i]['id']) . '">' . zen_image($template->get_template_dir('cart.gif', DIR_WS_TEMPLATE, $current_page_base,'images/icons'). '/' . 'cart.gif', ICON_CART) . '</a></li>' . "\n" ;
}
$content .= '</ul>' . "\n" ;
$content .= '</div>';
?>
Can you please help me to solve the problem! Is there any patch for this or this error is stil open.
i got here: http://www.zen-cart.com/forum/showth...ory+error+line one post where one have the same problem but there is no answer!
My settings for order history in Tools -- > Layout boxes Controller:
Best regards Ivan!



