Jump to content

SBoss

Members
  • Posts

    2
  • Joined

  • Last visited

Profile Information

  • First Name
    Sebastian
  • Last Name
    Bossert

SBoss's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Hi Everyone, The method getTotalShippingCost in the Cart is broken - the costs can never be re-calculated after changing the delivery option. Neither changing the option in the cart, nor passing a different method to the function will change anything. static $_total_shipping; if (null === $_total_shipping) { At least a parameter to skip the cache should be implemented. Regards, Sebastian
  2. Hi, Currently it seems like the PaymentOption form does not support UTF8-encoded strings - they are encoded somewhere between setting and displaying. The issue is easily reproducible with the paymentexample. Replace generateForm() in paymentexample.php with return "<form>äöüéàè</form>"; which will then display äöüéà è The following will display the correct characters: return "<form>".utf8_decode("äöüéàè")."</form>"; Thanks for looking into this.
×
×
  • Create New...