Show
Ignore:
Timestamp:
03/05/08 21:02:26 (10 months ago)
Author:
inureyes
Message:

#863

  • 카테고리 출력시에도 숫자를 사용하도록 수정
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/interface/blog/category.php

    r5285 r5539  
    99 
    1010$cache = new pageCache; 
    11 $category = empty($suri['value']) ? 0 : getCategoryIdByLabel($blogid, $suri['value']); 
    12  
     11if(!isset($suri['id'])) { 
     12    $category = empty($suri['value']) ? 0 : getCategoryIdByLabel($blogid, $suri['value']); 
     13} else { 
     14    $category = $suri['id']; 
     15    $suri['value'] = getCategoryLabelById($blogid, $category); 
     16} 
    1317if(!doesHaveOwnership() && getCategoryVisibility($blogid, $category) < 2) 
    1418    $category = null;