I've been trying to debug this on my own, but the data appears to be stuck inside an array somewhere.
I found my bug after I upgraded to 3.3 I couldn't edit invoices anymore (change the status).
I went from 2.1 to 3.3 (so maybe I fudged something).
I turned on debug mode to test. I thought I turned it off, but...
The first customer (after upgrade) came rolling through and completed a transaction.
Now when I look at the order on the orders.php page (in edit mode)
I get this:
<--snip-->
PRODUCT TABLE (tax, price, price, total, total)
2308 5% $18.00 $18.00 $18.00 $18.00
Discount Coupon C007 applied: -$7.40 [INVOICE BUTTON].....
<--snip-->
Notice how it doesn't have more of the subtotal in there. Just the coupon then straight to the invoice button.
It also skips over letting me edit comments, and changing the status of the order.
So I looked at the source code of the page:
<td class="smallText" align="right">Discount Coupon C007 applied:</td>
<td class="smallText" align="right">-$7.40
<!-- Discount Coupons DEBUG
order Object
(
[info] => Array
(
[order_status] => 2
[currency] => USD
[currency_value] => 1.00000000
[payment_method] => Authorize.net AIM
[cc_typ</td>
</tr>
<tr>
<td align="right" class="smallText">Sub-Total:</td>
<td align="right" class="smallText">$66.60</td>
</tr>
<tr>
There is this strange HTML comment in there about debug mode, which essentially omits most of the rest of the page until it gets to a full set of comments below, at which point the unbalanced comments are cleared.
I am no longer in debug mode (I even switched into it, and out of it, to make sure that I was out of it). So is this stuck in my database now that I have to go edit?
Cheers!
--Brett
P.S. On a completely different note. Any thought of creating a new Topic for 3.3? I tried to download the entire topic so I could search for this problem, but it doesn't download the whole thing, just a small chunk of it. Just a thought.