Changeset 3453
- Timestamp:
- 06/18/07 13:16:06 (3 years ago)
- Location:
- trunk
- Files:
-
- 2 modified
-
blog/owner/setting/account/profile/index.php (modified) (1 diff)
-
components/Textcube.Core.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/blog/owner/setting/account/profile/index.php
r3313 r3453 6 6 $IV = array( 7 7 'POST' => array( 8 'userid'=>array('id') 8 'email'=>array('email'), 9 'nickname'=>array('string') 9 10 ) 10 11 ); -
trunk/components/Textcube.Core.php
r3449 r3453 85 85 continue; 86 86 } else { 87 if(empty($teamInfo['title'])){ 88 $title = _f('%1 님의 블로그',$teamInfo['name']); 89 } 87 $title = empty($teamInfo['title']) ? _f('%1 님의 블로그',$teamInfo['name']) : $teamInfo['title']; 90 88 $blogn .= '<option value="' . $teamInfo['teams'] . '"'; 91 89 if($teamInfo['teams'] == $owner) $blogn .= ' selected="selected"';
