I have created a sample module Web. Also I have created one Sample Block for this. I have one web.phtml file in app/design/frontend/default/default/template folder and one web.xml file in app/desing/fronted/default/default/layout file. Below is my web.xml file\[code\]<?xml version="1.0"?><layout version="0.1.0"> <default> </default> <web_index_index> <reference name="root"> <action method="setTemplate"><template>page/2columns-left.phtml</template></action> </reference> <reference name="content"> <block type="web/web" name="web" template="web/web.phtml" /> </reference> </web_index_index></layout> \[/code\]It works properly in my http://mydomain.com/magento/web.Now I copied a catalogsearch.xml file from app/desing/fronted/base/default/layout and paste it in app/desing/fronted/default/default/layout and added block code in it after results.phtml but I am not able to see the block in my catalogsearch page.\[code\]<block type="web/web" name="web" template="web/web.phtml" /> \[/code\]What I am missing here? What is the proper way to add block in catalogsearch.xml file?