Show
Ignore:
Timestamp:
03/19/08 00:06:18 (10 months ago)
Author:
inureyes
Message:

#887

  • 받는 컨텐츠에서 댓글 내용의 경우 text필드를 사용하므로 자르지 않도록 함.
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/lib/model/blog.comment.php

    r5570 r5602  
    873873    $parent_homepage = POD::escapeString(UTF8::lessenAsEncoding($post['r1_homepage'], 80)); 
    874874    $parent_written = $post['r1_regdate']; 
    875     $parent_comment = POD::escapeString(UTF8::lessenAsEncoding($post['r1_body'], 255)); 
     875    $parent_comment = POD::escapeString($post['r1_body']); 
    876876    $parent_url = POD::escapeString(UTF8::lessenAsEncoding($post['r1_url'], 255)); 
    877877    $child_id = $post['r2_no']; 
     
    880880    $child_homepage = POD::escapeString(UTF8::lessenAsEncoding($post['r2_homepage'], 80)); 
    881881    $child_written = $post['r2_regdate']; 
    882     $child_comment = POD::escapeString(UTF8::lessenAsEncoding($post['r2_body'], 255)); 
    883     $child_url = POD::escapeString(UTF8::lessenAsEncoding($post['r2_url'], 255)); 
     882    $child_comment = POD::escapeString($post['r2_body'], 255); 
     883    $child_url = POD::escapeString(UTF8::lessenAsEncoding($post['r2_url'])); 
    884884    $siteId = POD::queryCell("SELECT id FROM {$database['prefix']}CommentsNotifiedSiteInfo WHERE url = '$homepage'"); 
    885885    $insertId = getCommentsNotifiedSiteInfoMaxId() + 1;