Quote Originally Posted by chuckrey View Post
So apparently, this line is the issue:
WHERE orders_id = " . (int)($orders_fields['orders_id'] . " LIMIT 1";
Yeah, just pulled it up...

Change:
Code:
WHERE orders_id = " . (int)($orders_fields['orders_id'] . " LIMIT 1";
to:
Code:
WHERE orders_id = " . (int)$orders_fields['orders_id'] . " LIMIT 1";
Man, I really wish I knew where/how characters like that just seem to randomly appear...