Changeset 5343
- Timestamp:
- 02/21/08 23:51:00 (9 months ago)
- Location:
- trunk
- Files:
-
- 3 modified
-
interface/owner/control/action/blog/delete/index.php (modified) (1 diff)
-
interface/owner/control/blog/detail/index.php (modified) (1 diff)
-
lib/model/blog.blogSetting.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/interface/owner/control/action/blog/delete/index.php
r5339 r5343 25 25 } 26 26 } 27 respond::PrintResult(array('error' => 0 , 'result' =>$suri['id']));27 respond::PrintResult(array('error' => 0 , 'result' =>$suri['id'])); 28 28 ?> -
trunk/interface/owner/control/blog/detail/index.php
r5342 r5343 37 37 38 38 function deleteBlog(bid) { 39 if (!confirm("<?php echo _t('되돌릴 수 없습니다.');?>\t\n\n<?php echo _t('계속 진행 하시겠습니까?');?>")) return false;39 if (!confirm("<?php echo _t('되돌릴 수 없습니다.');?>\t\n\n<?php echo _t('계속 진행 하시겠습니까?');?>")) return false; 40 40 var request = new HTTPRequest("GET", "<?php echo $blogURL;?>/owner/control/action/blog/delete/?item="+bid); 41 41 request.onSuccess = function() { -
trunk/lib/model/blog.blogSetting.php
r5285 r5343 533 533 if (count($tags) > 0) 534 534 { 535 $tagliststr = implode(', ', $tags); 536 $nottargets = POD::queryColumn("SELECT DISTINCT tag FROM {$database['prefix']}TagRelations WHERE tag in ( $tagliststr )"); 535 $tagliststr = implode(', ', $tags); // Tag id used at deleted blog. 536 $nottargets = POD::queryColumn("SELECT DISTINCT tag FROM {$database['prefix']}TagRelations WHERE tag in ( $tagliststr )"); // Tag id used at other blogs. 537 537 if (count($nottargets) > 0) { 538 538 $nottargetstr = implode(', ', $nottargets);
