Summary:
Error in shipping box values
Detailed Description:
In function.admin_shipping_tab.php line 88-90:
$box->set_width($width);
$box->set_height($width);
$box->set_length($width);
Should be:
$box->set_width($width);
$box->set_height($height);
$box->set_length($length);