Changeset 6251

Show
Ignore:
Timestamp:
06/10/08 02:12:01 (7 months ago)
Author:
inureyes
Message:

#1005

  • 확인 루틴의 오류 수정
Location:
trunk/interface/blog
Files:
2 modified

Legend:

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

    r6250 r6251  
    99 
    1010$cache = new pageCache; 
    11 if(!isset($suri['id']) && (getBlogSetting('useSloganOnCategory',1) == 0)) { 
     11if(!isset($suri['id']) && (getBlogSetting('useSloganOnCategory',1) == 1)) { 
    1212    $category = empty($suri['value']) ? 0 : getCategoryIdByLabel($blogid, $suri['value']); 
    1313} else { 
  • trunk/interface/blog/tag.php

    r6250 r6251  
    99$cache = new pageCache; 
    1010if (strlen($suri['value'])) { 
    11     if(!isset($suri['id']) && (getBlogSetting('useSloganOnTag',1) == 0)) { 
     11    if(!isset($suri['id']) && (getBlogSetting('useSloganOnTag',1) == 1)) { 
    1212        $tag = getTagId($blogid, $suri['value']); 
    1313    } else {