Changeset 5916
- Timestamp:
- 05/10/08 03:01:16 (22 months ago)
- Location:
- trunk
- Files:
-
- 4 modified
-
interface/owner/communication/link/index.php (modified) (1 diff)
-
lib/model/blog.link.php (modified) (2 diffs)
-
setup.php (modified) (4 diffs)
-
style/admin/whitedream/communication.css (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/interface/owner/communication/link/index.php
r5908 r5916 114 114 ?> 115 115 <tr id="link_<?php echo $link['id'];?>" class="<?php echo $className;?> inactive-class" onmouseover="rolloverClass(this, 'over')" onmouseout="rolloverClass(this, 'out')"> 116 <td class="category"><a href="<?php echo $blogURL;?>/owner/communication/link/categoryEdit/<?php echo $link['category'];?>" title="<?php echo _t('이 카테고리 정보를 수정합니다.');?>" ><?php echo (isset($link['categoryName']) ? htmlspecialchars($link['categoryName']) : _t('분류 없음'));?></a></td>116 <td class="category"><a href="<?php echo $blogURL;?>/owner/communication/link/categoryEdit/<?php echo $link['category'];?>" title="<?php echo _t('이 카테고리 정보를 수정합니다.');?>"<?php echo (isset($link['categoryName']) ? '' : ' class="uncategorized"');?>><?php echo (isset($link['categoryName']) ? htmlspecialchars($link['categoryName']) : _t('분류 없음'));?></a></td> 117 117 <td class="homepage"><a href="<?php echo $blogURL;?>/owner/communication/link/edit/<?php echo $link['id'];?>" title="<?php echo _t('이 링크 정보를 수정합니다.');?>"><?php echo htmlspecialchars($link['name']);?></a></td> 118 118 <td class="address"><a href="<?php echo htmlspecialchars($link['url']);?>" onclick="window.open(this.href); return false;" title="<?php echo _t('이 링크에 연결합니다.');?>"><?php echo htmlspecialchars($link['url']);?></a></td> -
trunk/lib/model/blog.link.php
r5908 r5916 99 99 100 100 $rss = isset($link['rss']) ? POD::escapeString(UTF8::lessenAsEncoding(trim($link['rss']), 255)) : ''; 101 returnPOD::execute("UPDATE {$database['prefix']}Links101 $result = POD::execute("UPDATE {$database['prefix']}Links 102 102 SET 103 103 category = $category, … … 108 108 WHERE 109 109 blogid = $blogid and id = {$link['id']}"); 110 // Garbage correction 111 $existCategories = POD::queryColumn("SELECT DISTINCT category FROM {$database['prefix']}Links 112 WHERE blogid = $blogid"); 113 @POD::execute("DELETE FROM {$database['prefix']}LinkCategories 114 WHERE blogid = $blogid AND id NOT IN (".implode(",",$existCategories).")"); 115 return $result; 110 116 } 111 117 -
trunk/setup.php
r5908 r5916 654 654 else { 655 655 $error = 8; 656 echo '<li style="color:red">', _t('웹 설정 파일'), ': ', _f('"%1"에 접근할 수 없습니다. 퍼미션을 %2(으)로 수정해 주십시오.', $filename, '0666'), '</li>';656 echo '<li style="color:red">', _t('웹 설정 파일'), ': ', _f('"%1"에 접근할 수 없습니다. 퍼미션을 %2(으)로 수정해 주십시오.', $filename, '0666'), _f('FTP 프로그램으로 권한을 수정하시거나 다음의 명령을 터미널에 붙여 넣으시면 됩니다 : %1','chmod 0666 '.$filename), '</li>'; 657 657 } 658 658 } … … 661 661 else { 662 662 $error = 9; 663 echo '<li style="color:red">', _t('웹 설정 파일'), ': ', _f('"%1"에 %2 파일을 생성할 수 없습니다. "%1"의 퍼미션을 %3(으)로 수정해 주십시오.', $root, '.htaccess', '0777'), '</li>';663 echo '<li style="color:red">', _t('웹 설정 파일'), ': ', _f('"%1"에 %2 파일을 생성할 수 없습니다. "%1"의 퍼미션을 %3(으)로 수정해 주십시오.', $root, '.htaccess', '0777'), _f('FTP 프로그램으로 권한을 수정하시거나 다음의 명령을 터미널에 붙여 넣으시면 됩니다 : %1','chmod 0777 '.$root), '</li>'; 664 664 } 665 665 … … 716 716 } 717 717 718 $filename = $root . '/remote';718 /* $filename = $root . '/remote'; 719 719 if (is_dir($filename)) { 720 720 if (is_writable($filename)) … … 730 730 $error = 13; 731 731 echo '<li style="color:red">', _t('원격 설치 디렉토리'), ': ', _f('"%1"에 %2 디렉토리를 생성할 수 없습니다. "%1"의 퍼미션을 %3(으)로 수정해 주십시오.', $root, 'cache', '0777'), '</li>'; 732 } 732 }*/ 733 733 734 734 $filename = $root . '/skin/customize'; -
trunk/style/admin/whitedream/communication.css
r5915 r5916 412 412 } 413 413 414 #part-link-list table.data-inbox tbody tr td a.uncategorized 415 { 416 color : #BCBCBC; 417 } 418 414 419 #part-link-list table.data-inbox thead.xfn tr th.xfn-homepage 415 420 {
