Changeset 3321 for sandbox/lib/piece/blog/list.php
- Timestamp:
- 05/24/07 16:21:52 (20 months ago)
- Files:
-
- 1 modified
-
sandbox/lib/piece/blog/list.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
sandbox/lib/piece/blog/list.php
r3300 r3321 10 10 $teamblog_name = DBQuery::queryCell("SELECT b.name 11 11 FROM {$database['prefix']}TeamEntryRelations a, {$database['prefix']}Users b 12 WHERE a. Owner=".$item['owner']." AND a.Id=".$item['id']." AND a.Team=b.userid");12 WHERE a.owner=".$item['owner']." AND a.id=".$item['id']." AND a.team=b.userid"); 13 13 $itemsView .= str_replace( 14 14 array( 15 15 '[##_list_rep_regdate_##]', 16 '[##_list_rep_name_##]', 16 17 '[##_list_rep_link_##]', 17 18 '[##_list_rep_title_##]', … … 20 21 array( 21 22 fireEvent('ViewListDate', Timestamp::format3($item['published'])), 23 fireEvent('ViewListName', htmlspecialchars($teamblog_name)), 22 24 "$blogURL/" . ($blog['useSlogan'] ? 'entry/' . encodeURL($item['slogan']) : $item['id']), 23 htmlspecialchars('['.$teamblog_name.'] '. fireEvent('ViewListTitle', $item['title'])),25 fireEvent('ViewListTitle', $item['title']), 24 26 ($item['comments'] > 0) ? "({$item['comments']})" : '' 25 27 ),
