mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 02:31:40 +09:00
Fixed Typo
This commit is contained in:
parent
0cdda975f9
commit
c64f29767e
2 changed files with 3 additions and 2 deletions
|
|
@ -258,7 +258,7 @@ class communicationModel extends communication
|
|||
case 'N' :
|
||||
$args->member_srl = $logged_info->member_srl;
|
||||
$args->readed = 'N';
|
||||
$query_id = 'comunication.getReadedMessages';
|
||||
$query_id = 'communication.getReadedMessages';
|
||||
break;
|
||||
|
||||
default :
|
||||
|
|
@ -274,7 +274,7 @@ class communicationModel extends communication
|
|||
$args->list_count = 20;
|
||||
$args->page_count = 10;
|
||||
|
||||
return executeQuery($query_id, $args, $columnList);
|
||||
return executeQueryArray($query_id, $args, $columnList);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -122,6 +122,7 @@ class communicationView extends communication
|
|||
// Extract a list
|
||||
$columnList = array('message_srl', 'readed', 'title', 'member.member_srl', 'member.nick_name', 'message.regdate', 'readed_date');
|
||||
$output = $oCommunicationModel->getMessages($message_type, $columnList);
|
||||
debugPRint($output);
|
||||
|
||||
// set a template file
|
||||
Context::set('total_count', $output->total_count);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue