@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix Legalpad for logged-out users

Summary: Fixes T5739. I only got D9857 half right: the new method names are correct, but the bodies needed to change too.

Test Plan: Signed a document as an anonymous user.

Reviewers: btrahan, chad

Reviewed By: chad

Subscribers: epriestley

Maniphest Tasks: T5739

Differential Revision: https://secure.phabricator.com/D10191

+2 -2
+1 -1
src/applications/legalpad/controller/LegalpadDocumentDoneController.php
··· 3 3 final class LegalpadDocumentDoneController extends LegalpadController { 4 4 5 5 public function shouldAllowPublic() { 6 - return false; 6 + return true; 7 7 } 8 8 9 9 public function processRequest() {
+1 -1
src/applications/legalpad/controller/LegalpadDocumentSignController.php
··· 5 5 private $id; 6 6 7 7 public function shouldAllowPublic() { 8 - return false; 8 + return true; 9 9 } 10 10 11 11 public function willProcessRequest(array $data) {