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

Discourage new users from exploring too much

Summary: Fixes T11834. Actually adding the step wasn't in the `if (...)` block. Also, typo fix.

Test Plan: Saw only one "Explore" on `/guides/`.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T11834

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

+9 -9
+9 -9
src/applications/guides/module/PhabricatorGuideQuickStartModule.php
··· 188 188 $description = 189 189 pht('Invite the rest of your team to get started on Phabricator.'); 190 190 } 191 - } 192 191 193 - $item = id(new PhabricatorGuideItemView()) 194 - ->setTitle($title) 195 - ->setHref($href) 196 - ->setIcon($icon) 197 - ->setIconBackground($icon_bg) 198 - ->setDescription($description); 199 - $guide_items->addItem($item); 192 + $item = id(new PhabricatorGuideItemView()) 193 + ->setTitle($title) 194 + ->setHref($href) 195 + ->setIcon($icon) 196 + ->setIconBackground($icon_bg) 197 + ->setDescription($description); 198 + $guide_items->addItem($item); 199 + } 200 200 201 201 $intro = pht( 202 - 'If your new to Phabricator, these optional steps can help you learn '. 202 + 'If you\'re new to Phabricator, these optional steps can help you learn '. 203 203 'the basics. Conceptually, Phabricator is structured as a graph, and '. 204 204 'repositories, tasks, and projects are all independent from each other. '. 205 205 'Feel free to set up Phabricator for how you work best, and explore '.