Changeset 3595
- Timestamp:
- 07/04/07 23:42:49 (3 years ago)
- Location:
- trunk
- Files:
-
- 3 modified
-
blog/category/index.php (modified) (1 diff)
-
blog/tag/index.php (modified) (1 diff)
-
script/EAF3.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/blog/category/index.php
r3124 r3595 16 16 $list = array('title' => (empty($suri['value']) ? _t('전체') : $suri['value']), 'items' => $listWithPaging[0], 'count' => $listWithPaging[1]['total']); 17 17 $paging = $listWithPaging[1]; 18 require ROOT . '/lib/piece/blog/list.php'; 18 19 } 19 20 $entries = array(); 20 if ($skinSetting['showListOnCategory'] != 2) 21 if ($skinSetting['showListOnCategory'] != 2) { 21 22 list($entries, $paging) = getEntriesWithPagingByCategory($owner, $category, $suri['page'], $blog['entriesOnList'], ($skinSetting['showListOnCategory'] == 3 ? $blog['entriesOnPage'] : $blog['entriesOnList'])); 22 23 require ROOT . '/lib/piece/blog/entries.php'; 24 } 23 25 require ROOT . '/lib/piece/blog/begin.php'; 24 require ROOT . '/lib/piece/blog/list.php';25 require ROOT . '/lib/piece/blog/entries.php';26 26 require ROOT . '/lib/piece/blog/end.php'; 27 27 ?> -
trunk/blog/tag/index.php
r3583 r3595 25 25 $list = array('title' => $suri['value'], 'items' => $listWithPaging[0], 'count' => $listWithPaging[1]['total']); 26 26 $paging = $listWithPaging[1]; 27 require ROOT . '/lib/piece/blog/list.php'; 27 28 } 28 if ($skinSetting['showListOnTag'] != 2) 29 if ($skinSetting['showListOnTag'] != 2) { 29 30 list($entries, $paging) = getEntriesWithPagingByTag($owner, $tag, $suri['page'], $blog['entriesOnList'],($skinSetting['showListOnTag'] == 3 ? $blog['entriesOnPage'] : $blog['entriesOnList'])); 30 31 require ROOT . '/lib/piece/blog/list.php'; 32 require ROOT . '/lib/piece/blog/entries.php'; 31 require ROOT . '/lib/piece/blog/entries.php'; 32 } 33 33 } else { 34 34 $siteTags = getSiteTags($owner); -
trunk/script/EAF3.js
r3355 r3595 26 26 27 27 Standardizer.prototype.isIE = (navigator.userAgent.indexOf("MSIE")>=0); 28 Standardizer.prototype.isFirefox = (navigator.userAgent.indexOf("Firefox")>=0 );28 Standardizer.prototype.isFirefox = (navigator.userAgent.indexOf("Firefox")>=0 || navigator.userAgent.indexOf("IceWeasel")>=0); 29 29 Standardizer.prototype.isSafari = (navigator.userAgent.indexOf("Safari")>=0); 30 30 Standardizer.prototype.isOpera = (!Standardizer.prototype.isIE&&(navigator.userAgent.indexOf("Opera")>=0));
