@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 some long lines to be less long

Summary: Self-explanatory.

Test Plan: `arc lint`

Reviewers: btrahan, #blessed_reviewers, epriestley

Reviewed By: #blessed_reviewers, epriestley

Subscribers: epriestley, Korvin

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

+10 -5
+4 -1
src/applications/differential/view/DifferentialDiffTableOfContentsView.php
··· 136 136 $pchar = 137 137 ($changeset->getOldProperties() === $changeset->getNewProperties()) 138 138 ? '' 139 - : phutil_tag('span', array('title' => pht('Properties Changed')), 'M'); 139 + : phutil_tag( 140 + 'span', 141 + array('title' => pht('Properties Changed')), 142 + 'M'); 140 143 141 144 $fname = $changeset->getFilename(); 142 145 $cov = $this->renderCoverage($coverage, $fname);
+2 -1
src/docs/contributor/database.diviner
··· 155 155 such as PHID columns. Otherwise, use `COLLATE utf8_general_ci`. 156 156 - Name all indexes so it is possible to delete them later. 157 157 # Edit `src/infrastructure/storage/patch/PhabricatorBuiltinPatchList.php` and 158 - add your patch to @{method@phabricator:PhabricatorBuiltinPatchList::getPatches}. 158 + add your patch to 159 + @{method@phabricator:PhabricatorBuiltinPatchList::getPatches}. 159 160 # Run `bin/storage upgrade`. 160 161 161 162 It is also possible to create more complex patches in PHP for data migration
+2 -1
src/infrastructure/daemon/bot/adapter/PhabricatorBotFlowdockProtocolAdapter.php
··· 21 21 $ssl = $this->getConfig('ssl'); 22 22 23 23 $url = ($ssl) ? 'https://' : 'http://'; 24 - $url .= "{$this->authtoken}@stream.flowdock.com/flows/{$organization}/{$channel}"; 24 + $url .= "{$this->authtoken}@stream.flowdock.com"; 25 + $url .= "/flows/{$organization}/{$channel}"; 25 26 return $url; 26 27 } 27 28
+2 -2
src/infrastructure/daemon/bot/handler/PhabricatorBotObjectNameHandler.php
··· 123 123 array( 124 124 'id' => $file_id, 125 125 )); 126 - $output[$file['phid']] = $file['objectName'].': '.$file['uri'].' - '. 127 - $file['name']; 126 + $output[$file['phid']] = $file['objectName'].': '. 127 + $file['uri'].' - '.$file['name']; 128 128 } 129 129 } 130 130