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

Hacks on Hacks

Summary:
hack hack hack

(`class_exists()` no longer throws in a libphutil environment.)

Test Plan: derpaderp

Reviewers: chad

Reviewed By: chad

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

+1 -6
+1 -6
src/applications/releeph/field/selector/ReleephDefaultFieldSelector.php
··· 10 10 * as possible. This obivously is an abomination. -epriestley 11 11 */ 12 12 public static function isFacebook() { 13 - try { 14 - class_exists('ReleephFacebookKarmaFieldSpecification'); 15 - return true; 16 - } catch (Exception $ex) { 17 - return false; 18 - } 13 + return class_exists('ReleephFacebookKarmaFieldSpecification'); 19 14 } 20 15 21 16 /**