i believe it has something to do with this line from upsxml
Code:
$upsQuote = $this->_upsGetQuote();
        if ((is_array($upsQuote)) && (sizeof($upsQuote) > 0)) {
            if (DIMENSIONS_SUPPORTED) {
                $this->quotes = array('id' => $this->code, 'module' => $this->title . ' (' . $this->boxCount . ($this->boxCount > 1 ? ' pkg(s), ' : ' pkg, ') . $totalWeight . ' ' . strtolower($this->unit_weight) . ' total)');
            } else {
                $this->quotes = array('id' => $this->code, 'module' => $this->title . ' (' . $shipping_num_boxes . ($this->boxCount > 1 ? ' pkg(s) x ' : ' pkg x ') . number_format($shipping_weight,2) . ' ' . strtolower($this->unit_weight) . ' total)');
            }
When i added shipping boxes manager to advanced shipper this line did the same thing
Code:
$sba_shipping_weight = ceil($sba_box_cubic/139) + $sba_shipping_weight;
But changing to this fixed that in advanced shipper.
Code:
$sba_shipping_weight = ceil($sba_shipping_weight);
so that is why i think same thing happening now