HomeHelpTrac

Ignore:
Timestamp:
03/11/10 02:08:14 (2 years ago)
Author:
Anton Lesnikov
Message:

Ticket #1897

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/modules/boonex/news/classes/BxNewsTemplate.php

    r12630 r13780  
    111111            $aResult['bx_repeat:entries'][] = array( 
    112112                'id' => $this->_oConfig->getSystemPrefix() . $aEntry['id'], 
    113                 'caption' => $aEntry['caption'], 
     113                'caption' => str_replace("$", "$", $aEntry['caption']), 
    114114                'class' => !in_array($sSampleType, array('view')) ? ' news-text-snippet' : '', 
    115115                'date' => getLocaleDate($aEntry['date']), 
    116                 'content' => $aEntry['content'], 
     116                'content' => str_replace("$", "$", $aEntry['content']), 
    117117                'link' => BX_DOL_URL_ROOT . $this->_oConfig->getBaseUri() . 'view/' . $aEntry['uri'], 
    118118                'voting' => $sVotes, 
Note: See TracChangeset for help on using the changeset viewer.