<?xml version="1.0" encoding="utf-8"?><rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
    xmlns:admin="http://webns.net/mvcb/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:content="http://purl.org/rss/1.0/modules/content/">
    <channel>
    <title>Magento Issue Tracking</title>
    <link>http://www.magentocommerce.com/bug-tracking/</link>
    <description></description>
    <dc:language>en</dc:language>
    <dc:creator>MagentoCommerce</dc:creator>
    <dc:rights>Copyright {gmt_date format="%Y"}</dc:rights>
    <dc:date>{gmt_date format="%Y-%m-%dT%H:%i:%s%Q"}</dc:date>
    <admin:generatorAgent rdf:resource="http://expressionengine.com/" />
        <item>
        <title>View Issue #6612 / Mage_Sales_Model_Quote_Address_Rate, setMethodDesc</title>
        <link>http://www.magentocommerce.com/bug-tracking/issue?issue=2869</link>
        <description><![CDATA[<strong>Posted:</strong> 2008-08-21 10:56:53<br/><strong>Category:</strong> Orders<br/><strong>Version:</strong> 1.1.3<br/><strong>Priority:</strong> normal<br/><strong>Status:</strong> resolved<br/><strong>Reported By:</strong> <a href="http://www.magentocommerce.com/boards/member/32264/">notzippy</a></strong><br/><br/>More to do with quotes then orders, but Line 61 of Mage_Sales_Model_Quote_Address_Rate file reads<br />
            $this<br />
                -&gt;setCode($rate-&gt;getCarrier().'_'.$rate-&gt;getMethod())<br />
                -&gt;setCarrier($rate-&gt;getCarrier())<br />
                -&gt;setCarrierTitle($rate-&gt;getCarrierTitle())<br />
                -&gt;setMethod($rate-&gt;getMethod())<br />
                -&gt;setMethodDescription($rate-&gt;getMethodTitle())    *********** issue<br />
                -&gt;setPrice($rate-&gt;getPrice())<br />
<br />
Should it not be<br />
            $this<br />
                -&gt;setCode($rate-&gt;getCarrier().'_'.$rate-&gt;getMethod())<br />
                -&gt;setCarrier($rate-&gt;getCarrier())<br />
                -&gt;setCarrierTitle($rate-&gt;getCarrierTitle())<br />
                -&gt;setMethod($rate-&gt;getMethod())<br />
                -&gt;setMethodTitle($rate-&gt;getMethodTitle())  **** New<br />
                -&gt;setMethodDescription($rate-&gt;getMethodDescription()) **** Corrected<br />
                -&gt;setPrice($rate-&gt;getPrice())<br />
<br />
But by changing this the templates will also need to be updated since they only display the description<br />
<br />
Without this passing the method description or details from the Mage_Shipping_Model_Carrier_Abstract is pretty much impossible without hiding it somewhere in the title.<br />
<br />
Thx<br/><br/><hr/>]]></description>
    </item>
    
    </channel>
</rss>