@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.

Add Header to Registration

Summary: Adds an ObjectBox to Phabricator Registration

Test Plan: check logged out page for new header.

Reviewers: epriestley, btrahan

Reviewed By: epriestley

CC: Korvin, aran

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

+7 -3
+7 -3
src/applications/auth/controller/PhabricatorAuthRegisterController.php
··· 342 342 if ($must_set_password) { 343 343 $form->appendChild( 344 344 id(new AphrontFormRecaptchaControl()) 345 - ->setLabel('Captcha') 345 + ->setLabel(pht('Captcha')) 346 346 ->setError($e_captcha)); 347 347 } 348 348 ··· 389 389 'other authentication mechanisms (like LDAP or OAuth) later on.')); 390 390 } 391 391 392 + $object_box = id(new PHUIObjectBoxView()) 393 + ->setHeaderText($title) 394 + ->setForm($form) 395 + ->setFormError($error_view); 396 + 392 397 return $this->buildApplicationPage( 393 398 array( 394 399 $crumbs, 395 400 $welcome_view, 396 - $error_view, 397 - $form, 401 + $object_box, 398 402 ), 399 403 array( 400 404 'title' => $title,