more upgrade questions..
regarding the admin/orders.php file
on line 607 I see this change:
Code:
' <td align="right" class="'. str_replace('_', '-', $order->totals[$i]['class']) . '-Amount">' . $order->totals[$i]['text'] . '</td>' . "\n" .
the default code is this:
Code:
' <td align="right" class="'. str_replace('_', '-', $order->totals[$i]['class']) . '-Amount">' . $currencies->format($order->totals[$i]['value'], false) . '</td>' . "\n" .
Is this a Rewards points change?? (there are no code comments to help clarify this if it is) If it is a Rewards Points modification, I need some clarification as to what EXACTLY this change does???
Also because the orders.php file bundled in the Rewards Points module is from the last v1.5.4RC version and NOT the final release, it is MISSING a language file change that went into the last release v1.5.4RC version and eventually into the final release code.
line 978 reads:
Code:
$contents[] = array('text' => 'Products Ordered: ' . sizeof($order->products) );
It should be:
Code:
$contents[] = array('text' => TABLE_HEADING_PRODUCTS . ': ' . sizeof($order->products) );
Bookmarks