php - Bad Code given by Developer for Magento Theme -


i given code developer of magento theme using error after placing in file told to. can please tell me wrong code?

<div class="short-description clear"> <div class="std"><?php echo $_helper->productattribute($_product, nl2br($_product->getshortdescription();, 'short_description') ?></div> </div>  

there's ; after $_product->getshortdescription() doesn't belong there. there should closing bracket after 'short_description'). change php line to:

<?php echo $_helper->productattribute($_product, nl2br($_product->getshortdescription(), 'short_description')); ?> 

Comments

Popular posts from this blog

javascript - RequestAnimationFrame not working when exiting fullscreen switching space on Safari -

c# - How do I get the Nth largest element from a list with duplicates, using LINQ? -

jsp - "Sending a redirect is forbidden after the response has been committed" in sendRedirect -