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
Post a Comment