@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 an issue with ClassMap handling of DivinerAtomizers

Fixes T9193.

+3 -2
+3 -2
src/applications/diviner/workflow/DivinerGenerateWorkflow.php
··· 420 420 421 421 $atomizer_versions = array(); 422 422 foreach ($atomizers as $atomizer) { 423 - $atomizer_versions[$atomizer['name']] = call_user_func( 423 + $name = get_class($atomizer); 424 + $atomizer_versions[$name] = call_user_func( 424 425 array( 425 - $atomizer['name'], 426 + $name, 426 427 'getAtomizerVersion', 427 428 )); 428 429 }