tags:

views:

34

answers:

0

i modified following code to show indian rupee

public function formatPrecision($price, $precision,
$options=array(), $includeContainer = true, $addBrackets = false)

   {

       if (!isset($options['precision'])) {

           $options['precision'] = $precision;

       }

       if ($includeContainer) {

           return '<span class="price">' . ($addBrackets ? '[' :
'') . $this->formatTxt($price, $options) . ($addBrackets ? ']' : '') .
'</span>';

       }

       return $this->formatTxt($price, $options);

   }

everywhere on site its showing perfect but only in product specification table it shows <span class="price">200</span>.

This happens only on live server not on staging and local

Please help