Another small error, this shows up when the visitor loads the checkout page fir the first time, thus uc_checkout_pane_quotes() is passed $op=='view':
Notice: Undefined property: UcOrder::$quote in uc_checkout_pane_quotes() (line 829 of sites/all/modules/contrib/ubercart/shipping/uc_quote/uc_quote.module).
| Comment | File | Size | Author |
|---|---|---|---|
| #2 | ubercart-n1740166.patch | 857 bytes | damienmckenna |
Comments
Comment #1
damienmckennaFYI I discovered this by having error_reporting set to E_ALL and adding this to my settings.php file:
Comment #2
damienmckennaThis resolves the error by first checking if $order->quote['method'] is available; it also improves the logic in the trinary operator to avoid another NOTICE error.
Comment #3
damienmckennaRelated: #1740944: Use error_level=2 for all local development
Comment #4
longwaveCommitted, thanks for the patch.