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

Get rid of some local.aphront references.

+5 -3
+4 -1
src/applications/conduit/method/differential/creatediff/ConduitAPI_differential_creatediff_Method.php
··· 125 125 126 126 $diff->save(); 127 127 128 + $path = '/differential/diff/'.$diff->getID().'/'; 129 + $uri = PhabricatorEnv::getURI($path); 130 + 128 131 return array( 129 132 'diffid' => $diff->getID(), 130 - 'uri' => 'http://local.aphront.com/differential/diff/'.$diff->getID().'/', 133 + 'uri' => $uri, 131 134 ); 132 135 } 133 136
+1 -2
src/applications/differential/mail/base/DifferentialMail.php
··· 247 247 } 248 248 249 249 public function getRevisionURI() { 250 - // TODO 251 - return 'http://local.aphront.com/D'.$this->getRevision()->getID(); 250 + return PhabricatorEnv::getURI('/D'.$this->getRevision()->getID()); 252 251 } 253 252 254 253 public function setIsFirstMailToRecipients($first) {