<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Bug – Memory - Total Capacity]]></title><description><![CDATA[<p dir="auto">The Total Capacity attribute for Memory includes all Normal, Archived, and Deleted memory items. I modified the following file to only include Normal memory modules and not Archived or Deleted.</p>
<p dir="auto">file: src/classes/cmdb/dao/category/global/isys_cmdb_dao_category_g_memory.class.php</p>
<p dir="auto">OLD –--------------------------</p>
<pre><code>341:                        while ($l_row = $l_res-&gt;get_row())
342:                        {
343:                                 $l_capacity += isys_convert::memory($l_row['isys_catg_memory_list__capacity'], 'C__MEMORY_UNIT__GB', C__CONVERT_DIRECTION__BACKWARD);
344:                        } // while
</code></pre>
<p dir="auto">MODIFIED –-------------------</p>
<pre><code>341:                        while ($l_row = $l_res-&gt;get_row())
342:                        {
343:                                if ( $l_row['isys_catg_memory_list__status'] == 2 )
344:                                {
345:                                        $l_capacity += isys_convert::memory($l_row['isys_catg_memory_list__capacity'], 'C__MEMORY_UNIT__GB', C__CONVERT_DIRECTION__BACKWARD);
346:                                }
347:                        } // while
</code></pre>
]]></description><link>https://community.i-doit.com/topic/2913/bug-memory-total-capacity</link><generator>RSS for Node</generator><lastBuildDate>Fri, 17 Apr 2026 09:49:46 GMT</lastBuildDate><atom:link href="https://community.i-doit.com/topic/2913.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 09 Jun 2016 11:41:43 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Bug – Memory - Total Capacity on Mon, 22 Aug 2016 10:08:42 GMT]]></title><description><![CDATA[<p dir="auto">Hi,</p>
<p dir="auto">Thank you for that. I have forwarded it to my colleagues who will take a look at it.</p>
<p dir="auto">Kind Regards,<br />
Christian</p>
]]></description><link>https://community.i-doit.com/post/11960</link><guid isPermaLink="true">https://community.i-doit.com/post/11960</guid><dc:creator><![CDATA[creiss]]></dc:creator><pubDate>Mon, 22 Aug 2016 10:08:42 GMT</pubDate></item></channel></rss>