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

Set untitled Conpherences to '[No Title]' so users change them

Summary: This mainly affects crumbs, makes it more clear that the Conpherence doesn't have a set title.

Test Plan: Clear a title, see [No Title]

Reviewers: epriestley, btrahan

Reviewed By: epriestley

CC: aran, Korvin

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

+3 -3
+1 -1
src/applications/conpherence/controller/ConpherenceController.php
··· 58 58 if ($conpherence->getTitle()) { 59 59 $title = $conpherence->getTitle(); 60 60 } else { 61 - $title = pht('Conpherence'); 61 + $title = pht('[No Title]'); 62 62 } 63 63 $crumbs->addCrumb( 64 64 id(new PhabricatorCrumbView())
+1 -1
src/applications/conpherence/controller/ConpherenceViewController.php
··· 93 93 94 94 $title = $conpherence->getTitle(); 95 95 if (!$title) { 96 - $title = pht('Conpherence'); 96 + $title = pht('[No Title]'); 97 97 } 98 98 return $this->buildApplicationPage( 99 99 $layout,
+1 -1
src/applications/conpherence/storage/ConpherenceThread.php
··· 160 160 $title = $js_title = $this->getTitle(); 161 161 if (!$title) { 162 162 $title = $lucky_handle->getName(); 163 - $js_title = pht('Conpherence'); 163 + $js_title = pht('[No Title]'); 164 164 } 165 165 $img_src = $lucky_handle->getImageURI(); 166 166