mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-29 15:22:15 +09:00
#19435955: 질의문 오류 수정.
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@8022 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
ab18a83330
commit
221d755d8a
3 changed files with 12 additions and 12 deletions
|
|
@ -31,12 +31,12 @@
|
|||
$output = executeQuery('importer.updateCommentSync');
|
||||
}
|
||||
else {
|
||||
$output = executeQueryArray ('importer.getDocumentMemberSrlWithUserID')->data;
|
||||
if (is_array ($output) && count ($output)) {
|
||||
$output = executeQueryArray ('importer.getDocumentMemberSrlWithUserID');
|
||||
if (is_array ($output->data) && count ($output->data)) {
|
||||
$success_count = 0;
|
||||
$error_count = 0;
|
||||
$total_count = 0;
|
||||
foreach ($output as $val) {
|
||||
foreach ($output->data as $val) {
|
||||
$args->user_id = $val->user_id;
|
||||
$args->member_srl = $val->member_srl;
|
||||
$tmp = executeQuery ('importer.updateDocumentSyncForCUBRID', $args);
|
||||
|
|
@ -50,12 +50,12 @@
|
|||
}
|
||||
} // documents section
|
||||
|
||||
$output = executeQueryArray ('importer.getCommentMemberSrlWithUserID')->data;
|
||||
if (is_array ($output) && count ($output)) {
|
||||
$output = executeQueryArray ('importer.getCommentMemberSrlWithUserID');
|
||||
if (is_array ($output->data) && count ($output->data)) {
|
||||
$success_count = 0;
|
||||
$error_count = 0;
|
||||
$total_count = 0;
|
||||
foreach ($output as $val) {
|
||||
foreach ($output->data as $val) {
|
||||
$args->user_id = $val->user_id;
|
||||
$args->member_srl = $val->member_srl;
|
||||
$tmp = executeQuery ('importer.updateCommentSyncForCUBRID', $args);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue