Changeset 3453

Show
Ignore:
Timestamp:
06/18/07 13:16:06 (3 years ago)
Author:
jparker
Message:
  • #408
  • 팀원이 로그인 후 관리자 페이지에서 참여 중인 블로그 리스트명 누락되는 문제.
  • 계정 정보에서 필명/e-mail 수정이 안되는 문제.
Location:
trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/blog/owner/setting/account/profile/index.php

    r3313 r3453  
    66$IV = array( 
    77    'POST' => array( 
    8         'userid'=>array('id') 
     8        'email'=>array('email'), 
     9        'nickname'=>array('string') 
    910    ) 
    1011); 
  • trunk/components/Textcube.Core.php

    r3449 r3453  
    8585                continue; 
    8686            } else { 
    87                 if(empty($teamInfo['title'])){ 
    88                     $title = _f('%1 님의 블로그',$teamInfo['name']); 
    89                 } 
     87                $title = empty($teamInfo['title']) ? _f('%1 님의 블로그',$teamInfo['name']) : $teamInfo['title']; 
    9088                $blogn .= '<option value="' . $teamInfo['teams'] . '"'; 
    9189                if($teamInfo['teams'] == $owner) $blogn .= ' selected="selected"';