mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-22 13:30:55 +01:00
Fix an exception in Ponder comment saving.
Summary: Add a `setViewer()` so that PHID loading doesn't throw. Also remove a period from a button because none of the others have one. Test Plan: Saved a comment successfully. Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D4202
This commit is contained in:
parent
0a0768515f
commit
bad576db92
2 changed files with 2 additions and 1 deletions
|
@ -18,6 +18,7 @@ final class PonderCommentSaveController extends PonderController {
|
|||
|
||||
$target = $request->getStr('target');
|
||||
$objects = id(new PhabricatorObjectHandleData(array($target)))
|
||||
->setViewer($user)
|
||||
->loadHandles();
|
||||
if (!$objects) {
|
||||
return new Aphront404Response();
|
||||
|
|
|
@ -48,7 +48,7 @@ final class PonderAddAnswerView extends AphrontView {
|
|||
->setUser($this->user))
|
||||
->appendChild(
|
||||
id(new AphrontFormSubmitControl())
|
||||
->setValue($is_serious ? 'Submit' : 'Make it so.'));
|
||||
->setValue($is_serious ? 'Submit' : 'Make it so'));
|
||||
|
||||
$preview =
|
||||
'<div class="aphront-panel-flush">'.
|
||||
|
|
Loading…
Reference in a new issue