Changeset 5340
- Timestamp:
- 02/21/08 23:21:31 (11 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/interface/owner/control/blog/detail/index.php
r5339 r5340 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() { … … 69 69 var request = new HTTPRequest("GET", "<?php echo $blogURL;?>/owner/control/action/blog/changeACL/?blogid=" + <?php echo $bid?> + "&acltype=" + acltype + "&userid=" + userid + "&switch=" + checked); 70 70 request.onSuccess = function() { 71 alert("<?php echo _t('설정을 변경했습니다.');?>", "center", "bottom");71 PM.showMessage("<?php echo _t('설정을 변경했습니다.');?>", "center", "bottom"); 72 72 window.location.reload(); 73 73 } 74 74 request.onError = function() { 75 alert("<?php echo _t('실패했습니다.');?>");75 PM.showErrorMessage("<?php echo _t('실패했습니다.');?>", "center", "bottom"); 76 76 } 77 77 request.send(); 78 );79 78 } 80 79
