Skip to content

Commit

Permalink
refs #1604 : bugfix : category thumbnail size is now set to 80px.
Browse files Browse the repository at this point in the history
  • Loading branch information
inureyes committed Feb 27, 2012
1 parent dbe4cb1 commit e95b2e4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion interface/i/category/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
foreach ($list['items'] as $item) {
$author = User::getName($item['userid']);
if($imageName = printMobileAttachmentExtract(printMobileEntryContent($blogid, $item['userid'], $item['id']))){
$imageSrc = printMobileImageResizer($blogid, $imageName, 64);
$imageSrc = printMobileImageResizer($blogid, $imageName, 80);
}else{
$imageSrc = $service['path'] . '/resources/style/iphone/image/noPostThumb.png';
}
Expand Down
3 changes: 2 additions & 1 deletion interface/i/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,9 @@
$itemsView .= ' </div>'.CRLF;
$itemsView .= '</li>'.CRLF;
print $itemsView;
// Recent posts
?>
<li><a href="<?php echo $blogURL;?>/entry" rel="external" class="link"><?php echo _text('글목록');?></a></li>
<li><a href="<?php echo $blogURL;?>/entry" rel="external" class="link"><?php echo _text('전체 글목록');?></a></li>
<li><a href="#categories" class="link"><?php echo _text('분류');?></a></li>
<li><a href="#archives" class="link"><?php echo _text('보관목록');?></a></li>
<li><a href="#tags" class="link"><?php echo _text('태그');?></a></li>
Expand Down

0 comments on commit e95b2e4

Please sign in to comment.