@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 two errors from the error logs

Summary: Found these in the `secure` error logs: one bad call, one bad column.

Test Plan: Searched for empty string. Double-checked method name.

Reviewers: chad

Reviewed By: chad

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

+2 -2
+1 -1
src/applications/search/fulltextstorage/PhabricatorMySQLFulltextStorageEngine.php
··· 238 238 } else { 239 239 $select[] = qsprintf( 240 240 $conn, 241 - 'document.dateCreated AS fieldScore'); 241 + 'document.documentCreated AS fieldScore'); 242 242 } 243 243 244 244 $exclude = $query->getParameter('exclude');
+1 -1
src/infrastructure/cluster/PhabricatorDatabaseRef.php
··· 635 635 $application_replicas = array(); 636 636 $default_replicas = array(); 637 637 foreach ($replicas as $replica) { 638 - $master = $replica->getMaster(); 638 + $master = $replica->getMasterRef(); 639 639 640 640 if ($master->isApplicationHost($application)) { 641 641 $application_replicas[] = $replica;