@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 error strings in the diffusion.uri.edit Conduit method

Summary: Fixes T11839. Both are missing a parameter and one is a copy/paste slop.

Test Plan:
{F1913812}

{F1913813}

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T11839

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

+3 -1
+3 -1
src/applications/diffusion/editor/DiffusionURIEditor.php
··· 304 304 $type, 305 305 pht('Invalid'), 306 306 pht( 307 - 'Value "%s" is not a valid display setting for this URI. '. 307 + 'Value "%s" is not a valid IO setting for this URI. '. 308 308 'Available types for this URI are: %s.', 309 + $new, 309 310 implode(', ', array_keys($available))), 310 311 $xaction); 311 312 continue; ··· 418 419 pht( 419 420 'Value "%s" is not a valid display setting for this URI. '. 420 421 'Available types for this URI are: %s.', 422 + $new, 421 423 implode(', ', array_keys($available)))); 422 424 } 423 425 }