@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 error display

Summary: Fixes T12636.

Test Plan: Make a from, submit signature without checking box, see correctly aligned error.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

Maniphest Tasks: T12636

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

+4 -1
+4 -1
src/applications/legalpad/controller/LegalpadDocumentSignController.php
··· 320 320 $crumbs->setBorder(true); 321 321 $crumbs->addTextCrumb($document->getMonogram()); 322 322 323 + $box = id(new PHUITwoColumnView()) 324 + ->setFooter($signature_box); 325 + 323 326 return $this->newPage() 324 327 ->setTitle($title) 325 328 ->setCrumbs($crumbs) 326 329 ->setPageObjectPHIDs(array($document->getPHID())) 327 330 ->appendChild(array( 328 331 $content, 329 - $signature_box, 332 + $box, 330 333 )); 331 334 } 332 335