Changeset 13780 for trunk/modules/boonex/feedback/classes/BxFdbTemplate.php
- Timestamp:
- 03/11/10 02:08:14 (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/modules/boonex/feedback/classes/BxFdbTemplate.php
r12701 r13780 111 111 'id' => $this->_oConfig->getSystemPrefix() . $aEntry['id'], 112 112 'author_icon' => get_member_icon($aEntry['author_id'], 'left'), 113 'caption' => $aEntry['caption'],113 'caption' => str_replace("$", "$", $aEntry['caption']), 114 114 'class' => !in_array($sSampleType, array('view')) ? ' feedback-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.