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

Un-breaking the update_phabricator.sh script for those that have data in their chatlog_event table

Summary:
The last commit broke update_phabricator.sh for me when it tried to migrate channel names into its own table.

It's a fairly straight forward patch and I'm almost certain I fixed it correctly. :)

Test Plan: Made small changes, ran update_phabricator.sh, repeat until the errors went away.

Reviewers: epriestley

Reviewed By: epriestley

CC: aran, Korvin

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

+3 -2
+3 -2
resources/sql/patches/20130218.updatechannelid.php
··· 21 21 $event_row = queryfx_one( 22 22 $conn_w, 23 23 'SELECT channel FROM %T WHERE id = %d', 24 - $event->getTable(), 25 - $event->getChannelID()); 24 + $event->getTableName(), 25 + $event->getID()); 26 26 $event_channel = $event_row['channel']; 27 27 28 28 $matched = queryfx_one( 29 29 $conn_w, 30 30 'SELECT * FROM %T WHERE 31 31 channelName = %s AND serviceName = %s AND serviceType = %s', 32 + $channel_table->getTableName(), 32 33 $event_channel, 33 34 '', 34 35 '');