Changeset 3069
- Timestamp:
- 03/30/07 11:43:05 (22 months ago)
- Location:
- sandbox
- Files:
-
- 2 modified
-
blog/category/index.php (modified) (1 diff)
-
plugins/FM_TTML/index.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
sandbox/blog/category/index.php
r2930 r3069 12 12 $category = null; 13 13 if ($skinSetting['showListOnCategory'] != 0) { 14 $listWithPaging = getEntryListWithPagingByCategory($owner, $category, $suri['page'], $blog['entriesOnList']); 14 if(!$listWithPaging = getEntryListWithPagingByCategory($owner, $category, $suri['page'], $blog['entriesOnList'])) 15 $listWithPaging = array(array(), array('total' => 0)); 15 16 $list = array('title' => (empty($suri['value']) ? _t('전체') : $suri['value']), 'items' => $listWithPaging[0], 'count' => $listWithPaging[1]['total']); 16 17 $paging = $listWithPaging[1]; -
sandbox/plugins/FM_TTML/index.php
r3045 r3069 457 457 458 458 // 가로, 세로 어느 쪽이든 0이면 이미지는 표시되지 않음. 따라서 계산할 필요 없음. 459 if ( $attributes['width'] === 0 ||$attributes['height'] === 0) {459 if (@$attributes['width'] === 0 || @$attributes['height'] === 0) { 460 460 return array($property, false); 461 461 }
