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

Remove duplicated duplicated words

Test Plan: eyeball it

Reviewers: joshuaspence, #blessed_reviewers, epriestley

Reviewed By: joshuaspence, #blessed_reviewers, epriestley

Subscribers: epriestley

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

authored by

Eitan Adler and committed by
epriestley
2536febe b9abb277

+5 -5
+1 -1
src/applications/config/check/PhabricatorTimezoneSetupCheck.php
··· 15 15 16 16 if (!$ok) { 17 17 $message = pht( 18 - 'Your PHP configuration configuration selects an invalid timezone. '. 18 + 'Your PHP configuration selects an invalid timezone. '. 19 19 'Select a valid timezone.'); 20 20 21 21 $this
+1 -1
src/applications/diviner/storage/DivinerLiveSymbol.php
··· 150 150 151 151 public function save() { 152 152 // NOTE: The identity hash is just a sanity check because the unique tuple 153 - // on this table is way way too long to fit into a normal `UNIQUE KEY`. 153 + // on this table is way too long to fit into a normal `UNIQUE KEY`. 154 154 // We don't use it directly, but its existence prevents duplicate records. 155 155 156 156 if (!$this->identityHash) {
+1 -1
src/applications/files/storage/__tests__/PhabricatorFileTestCase.php
··· 185 185 186 186 $second_file = PhabricatorFile::newFromFileData($data, $params); 187 187 188 - // Test that the the second file uses the same storage handle as 188 + // Test that the second file uses the same storage handle as 189 189 // the first file. 190 190 $handle = $first_file->getStorageHandle(); 191 191 $second_handle = $second_file->getStorageHandle();
+1 -1
src/applications/repository/graphcache/PhabricatorRepositoryGraphCache.php
··· 313 313 // Find all the Git and Mercurial commits in the block which have completed 314 314 // change import. We can't fill the cache accurately for commits which have 315 315 // not completed change import, so just pretend we don't know about them. 316 - // In these cases, we will will ultimately fall back to VCS queries. 316 + // In these cases, we will ultimately fall back to VCS queries. 317 317 318 318 $commit_rows = queryfx_all( 319 319 $conn_r,
+1 -1
src/applications/transactions/editor/PhabricatorApplicationTransactionEditor.php
··· 960 960 // Maybe this makes more sense to move into the search index itself? For 961 961 // now I'm putting it here since I think we might end up with things that 962 962 // need it to be up to date once the next page loads, but if we don't go 963 - // there we we could move it into search once search moves to the daemons. 963 + // there we could move it into search once search moves to the daemons. 964 964 965 965 // It now happens in the search indexer as well, but the search indexer is 966 966 // always daemonized, so the logic above still potentially holds. We could