mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-21 03:12:55 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@3867 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
e9cb096a4c
commit
c279abe1f2
2 changed files with 23 additions and 12 deletions
|
|
@ -17,6 +17,8 @@
|
|||
* @brief 댓글의 추천을 처리하는 action (Up)
|
||||
**/
|
||||
function procCommentVoteUp() {
|
||||
if(!Context::get('is_logged')) return new Object(-1, 'msg_invalid_request');
|
||||
|
||||
$comment_srl = Context::get('target_srl');
|
||||
if(!$comment_srl) return new Object(-1, 'msg_invalid_request');
|
||||
|
||||
|
|
@ -28,6 +30,8 @@
|
|||
* @brief 댓글의 추천을 처리하는 action (Down)
|
||||
**/
|
||||
function procCommentVoteDown() {
|
||||
if(!Context::get('is_logged')) return new Object(-1, 'msg_invalid_request');
|
||||
|
||||
$comment_srl = Context::get('target_srl');
|
||||
if(!$comment_srl) return new Object(-1, 'msg_invalid_request');
|
||||
|
||||
|
|
@ -39,6 +43,8 @@
|
|||
* @brief 댓글이 신고될 경우 호출되는 action
|
||||
**/
|
||||
function procCommentDeclare() {
|
||||
if(!Context::get('is_logged')) return new Object(-1, 'msg_invalid_request');
|
||||
|
||||
$comment_srl = Context::get('target_srl');
|
||||
if(!$comment_srl) return new Object(-1, 'msg_invalid_request');
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue