I would like to understand the Magento Blocks, and therefore I read a Magento 1.5 code of Mage_Core_Block_Abstract .
The insert($block,,,$alias) method first calls the setChild($alias,$block) method, which builds a _children array (value=$block, key=$alias), and after that builds a _sortedChildren array (value=$name, key=number).
What I cannot understand is that the unsetChild($alias) method, after unsetting the _children[$alias] item… tries to find the corresponding _sortedChildren item via array_search($alias,_sortedChildren)… well, the values of _sortedChildren are block names, not aliases !
Does unsetChild work with a child whose alias is unequal to its name ?