Hi there.
I've been away from Ubercart since September, but when I see the Beta4 today I thought it's time to get up-to-date.
So I took a fresh Drupal Installation, downloaded Ubercart and its recommend modules and installed it. I really like your improvements - you did a great job!
But for me, the whole Shipping-Process doesn't work. I just activated the Shipping Quotes and the Flatrate Module and get a JS-Syntax error on the checkout page.
The following code produces the error
if (set_line_item != undefined){
set_line_item("shipping", "", , 1);
}That seems for me to be generated in uc_quote.module, line 1246.
<?php
if (set_line_item != undefined){
set_line_item("shipping", "'. $method['quote']['accessorials'][$quote['accessorials']] .'", '. $quote['rate'] .', 1);
}
?>$quote is the $_SESSION['quote']. But this is session is empty
quote => Array
(
[method] =>
[accessorials] =>
[rate] =>
[quote_form] =>
)While doing a bit more debugging hardcoded the line 1246 in uc_quote.module to something like that.
<?php
if (set_line_item != undefined){
set_line_item("shipping", "hey there", 10, 1);
}
?>After that, the JS-Error now is
set_line_item is not defined
Any ideas?





