Changeset 13780
- Timestamp:
- 03/11/10 02:08:14 (2 years ago)
- Location:
- trunk/modules/boonex
- Files:
-
- 3 edited
-
articles/classes/BxArlTemplate.php (modified) (1 diff)
-
feedback/classes/BxFdbTemplate.php (modified) (1 diff)
-
news/classes/BxNewsTemplate.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/modules/boonex/articles/classes/BxArlTemplate.php
r13522 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')) ? ' alr-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, -
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, -
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.