Changeset 5955
- Timestamp:
- 05/17/08 07:28:05 (6 months ago)
- Files:
-
- 1 modified
-
trunk/interface/blog/notice.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/interface/blog/notice.php
r5577 r5955 8 8 } 9 9 10 if(isset($suri['id'])) { 11 list($entries, $paging) = getEntryWithPaging($blogid, $suri['id'], true); 10 if (isset($suri['id']) || (isset($suri['value']) && strlen($suri['value']) > 0)) { 11 if (isset($suri['id'])) { 12 list($entries, $paging) = getEntryWithPaging($blogid, $suri['id'], true); 13 } else { 14 list($entries, $paging) = getEntryWithPagingBySlogan($blogid, $suri['value'], true); 15 } 12 16 fireEvent('OBStart'); 13 17 require ROOT . '/lib/piece/blog/begin.php';
