Changeset 1475
- Timestamp:
- 05/16/06 05:29:59 (2 years ago)
- Location:
- trunk/gregarius
- Files:
-
- 2 modified
-
cls/items.php (modified) (1 diff)
-
tags.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/gregarius/cls/items.php
r1435 r1475 278 278 * @param sqlOrder (optional) specifies a different item ordering 279 279 * @param sqlLimit (optional) specifies how many items should be fetched 280 * @param includeDeprecated (optional) specifies if deprecated feeds should be fetched280 * @param includeDeprecated (optional) specifies if deprecated feeds should be fetched 281 281 */ 282 282 function populate($sqlWhere, $sqlOrder="", $startItem = 0, $itemCount = -1, $hint = ITEM_SORT_HINT_MIXED, $includeDeprecated = false) { -
trunk/gregarius/tags.php
r1292 r1475 113 113 $taggedItems = new ItemList(); 114 114 $sqlWhere = " i.id in (".implode(",", $ids).") "; 115 $taggedItems->populate($sqlWhere); 115 // include deprecated feeds while showing tags. 116 $taggedItems->populate($sqlWhere, "", 0, -1, ITEM_SORT_HINT_MIXED, true); 116 117 117 118 $rtags = relatedTags($tarr);
