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

Merge branch 'master' of git://github.com/facebook/phabricator

+4 -2
+4 -2
resources/sql/patches/liskcounters.php
··· 29 29 30 30 queryfx( 31 31 $conn_w, 32 - 'INSERT IGNORE INTO %T (counterName, counterValue) 33 - VALUES (%s, %d)', 32 + 'INSERT INTO %T (counterName, counterValue) 33 + VALUES (%s, %d) 34 + ON DUPLICATE KEY UPDATE counterValue = %d', 34 35 LiskDAO::COUNTER_TABLE_NAME, 35 36 $active_table->getTableName(), 37 + $initial_counter + 1, 36 38 $initial_counter + 1); 37 39 38 40 // Drop AUTO_INCREMENT from the ID column.