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 -

Python ctypes access violation with const pointer arguments -