@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 validation of network names in Almanac

Summary: Ref T5833. This was using the wrong constant, so we weren't validating property.

Test Plan: Tried to create a nameless network and correctly got an error.

Reviewers: btrahan

Reviewed By: btrahan

Subscribers: epriestley

Maniphest Tasks: T5833

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

+1 -1
+1 -1
src/applications/almanac/editor/AlmanacNetworkEditor.php
··· 82 82 $errors = parent::validateTransaction($object, $type, $xactions); 83 83 84 84 switch ($type) { 85 - case AlmanacServiceTransaction::TYPE_NAME: 85 + case AlmanacNetworkTransaction::TYPE_NAME: 86 86 $missing = $this->validateIsEmptyTextField( 87 87 $object->getName(), 88 88 $xactions);