<em>@jamesnoronha 3386 wrote:</em><blockquote>Any luck on figuring out how to make the Collapse Module work in Joomla 1.5?</blockquote>
<blockquote>
we need to edit the php code which controls collapsable modules, i.e. <?php if(mosCountModules(‘user6’)) : ?>, this changes to <?php if($this->countModules(‘user6’)) : ?>. In this instance, only mosC changes which is to $this->c. A simple change but there are other more complex formations of the module counter such as <?php if(mosCountModules(‘user4’) or mosCountModules(‘user5’) or mosCountModules(‘user6’)) : ?> which changes to <?php if($this->countModules(‘user4 or user5 or user6’)) : ?></blockquote>
– Quote Source