mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 01:01:41 +09:00
DB import시 댓글의 status 값이 0 이 들어가서 댓글정렬이 깨지는 현상 수정
DB import 시 댓글의 status 값이 0 이 들어가서 댓글정렬이 깨지는 현상 수정. 기본값을 1 로 변경
This commit is contained in:
parent
ef7f5702ad
commit
3c35296912
1 changed files with 1 additions and 1 deletions
|
|
@ -937,7 +937,7 @@ class importerAdminController extends importer
|
|||
$obj->last_update = base64_decode($xmlDoc->comment->update->body);
|
||||
if(!$obj->last_update) $obj->last_update = $obj->regdate;
|
||||
$obj->ipaddress = base64_decode($xmlDoc->comment->ipaddress->body);
|
||||
$obj->status = base64_decode($xmlDoc->comment->status->body);
|
||||
$obj->status = base64_decode($xmlDoc->comment->status->body)==''?'1':base64_decode($xmlDoc->comment->status->body);
|
||||
$obj->list_order = $obj->comment_srl*-1;
|
||||
// Change content information (attachment)
|
||||
if(count($files))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue