Changeset 13780 for trunk/modules/boonex/news/classes/BxNewsTemplate.php
- Timestamp:
- 03/11/10 02:08:14 (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/modules/boonex/news/classes/BxNewsTemplate.php
r12630 r13780 111 111 $aResult['bx_repeat:entries'][] = array( 112 112 'id' => $this->_oConfig->getSystemPrefix() . $aEntry['id'], 113 'caption' => $aEntry['caption'],113 'caption' => str_replace("$", "$", $aEntry['caption']), 114 114 'class' => !in_array($sSampleType, array('view')) ? ' news-text-snippet' : '', 115 115 'date' => getLocaleDate($aEntry['date']), 116 'content' => $aEntry['content'],116 'content' => str_replace("$", "$", $aEntry['content']), 117 117 'link' => BX_DOL_URL_ROOT . $this->_oConfig->getBaseUri() . 'view/' . $aEntry['uri'], 118 118 'voting' => $sVotes,
Note: See TracChangeset
for help on using the changeset viewer.