mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-29 10:12:41 +01:00
Fix array/string type bug in comment saving.
This commit is contained in:
parent
4736b320ff
commit
6a94f054d2
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@ class DifferentialCommentSaveController extends DifferentialController {
|
||||||
|
|
||||||
$comment = $request->getStr('comment');
|
$comment = $request->getStr('comment');
|
||||||
$action = $request->getStr('action');
|
$action = $request->getStr('action');
|
||||||
$reviewers = $request->getStr('reviewers');
|
$reviewers = $request->getArr('reviewers');
|
||||||
|
|
||||||
$editor = new DifferentialCommentEditor(
|
$editor = new DifferentialCommentEditor(
|
||||||
$revision,
|
$revision,
|
||||||
|
|
Loading…
Reference in a new issue