Skip to content
This repository has been archived by the owner on Feb 17, 2022. It is now read-only.

Commit

Permalink
Fix CommentReplyGet action issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
qwqcode committed May 2, 2020
1 parent 831359d commit 5d83f9a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions app/components/Action.php
Original file line number Diff line number Diff line change
Expand Up @@ -244,8 +244,7 @@ public function actionCommentReplyGet()

$replyRaw = $replyRaw
->orderBy('date', 'DESC')
->findAll()
->asArray();
->findAll();

$reply = [];
foreach ($replyRaw as $item) {
Expand Down

0 comments on commit 5d83f9a

Please sign in to comment.