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# - WPF+EF - The operation cannot be completed because the DbContext has been disposed -

jsf - How to ajax update an item in the footer of a PrimeFaces dataTable? -