<?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 #28512 / Bug in Mage_Core_Model_Message_Collection avoiding correct message deletion by type</title>
        <link>http://www.magentocommerce.com/bug-tracking/issue?issue=14504</link>
        <description><![CDATA[<strong>Posted:</strong> 2012-12-05 10:31:42<br/><strong>Category:</strong> Configuration<br/><strong>Version:</strong> 1.7.0.2<br/><strong>Priority:</strong> normal<br/><strong>Status:</strong> assigned<br/><strong>Reported By:</strong> <a href="http://www.magentocommerce.com/boards/member/23358/">Herve Guetin</a></strong><br/><br/>A missing exclamation mark avoids correct message deletion by type.<br />
<br />
Mage_Core_Model_Message_Collection::deleteMessageByIdentifier()<br />
<br />
must be: <br />
<br />
    public function deleteMessageByIdentifier($identifier)<br />
    {<br />
        foreach ($this-&gt;_messages as $type =&gt; $messages) {<br />
            foreach ($messages as $id =&gt; $message) {<br />
                Zend_Debug::dump($message-&gt;getIdentifier());<br />
                Zend_Debug::dump($type);<br />
                if ($identifier === $message-&gt;getIdentifier()) {<br />
                    unset($this-&gt;_messages[$type][$id]);<br />
                }<br />
                /**<br />
                 * Hervé G., Agence Soon --&gt; Fix. Added &quot;!&quot; in order to actually delete messages<br />
                 */<br />
                //if (empty($this-&gt;_messages[$type])) {<br />
                if (!empty($this-&gt;_messages[$type])) {<br />
                    unset($this-&gt;_messages[$type]);<br />
                }<br />
            }<br />
        }<br />
    }<br/><br/><hr/>]]></description>
    </item>
    
                    <item>
        <title>RE: Bug in Mage_Core_Model_Message_Collection avoiding correct message deletion by type</title>
        <description><![CDATA[<em>#1 / Comment by <a href="http://www.magentocommerce.com/boards/member/23358/">Herve Guetin</a></em><br/><br/>Sorry... no need to include Zend_Debug !!]]></description>
    </item>
        </channel>
</rss>