I am geting this error only in Chrome, in Firefox everything is fine:
Fatal error: Call to a member function getName() on a non-object in /home1/idealtil/public_html/app/design/frontend/default/blank/template/catalog/product/view.phtml on line 55
here is my code from view.phtml:
<?php
$current_category = Mage::registry('current_category');
if ($current_category->getName() == 'Showroom'): ?> //this is line 55
<div class="product-essential">
<form action="<?php echo $this->getSubmitUrl($_product) ?>" method="post" id="product_addtocart_form"<?php if($_product->getOptions()): ?> enctype="multipart/form-data"<?php endif; ?>>
<div class="no-display">
................................. ....................................
what might be the problem?