mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-23 15:22:41 +01:00
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
This commit is contained in:
parent
999fae524f
commit
d032eea216
1 changed files with 9 additions and 9 deletions
|
@ -188,18 +188,18 @@ final class PhabricatorGuideQuickStartModule extends PhabricatorGuideModule {
|
||||||
$description =
|
$description =
|
||||||
pht('Invite the rest of your team to get started on Phabricator.');
|
pht('Invite the rest of your team to get started on Phabricator.');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$item = id(new PhabricatorGuideItemView())
|
||||||
|
->setTitle($title)
|
||||||
|
->setHref($href)
|
||||||
|
->setIcon($icon)
|
||||||
|
->setIconBackground($icon_bg)
|
||||||
|
->setDescription($description);
|
||||||
|
$guide_items->addItem($item);
|
||||||
}
|
}
|
||||||
|
|
||||||
$item = id(new PhabricatorGuideItemView())
|
|
||||||
->setTitle($title)
|
|
||||||
->setHref($href)
|
|
||||||
->setIcon($icon)
|
|
||||||
->setIconBackground($icon_bg)
|
|
||||||
->setDescription($description);
|
|
||||||
$guide_items->addItem($item);
|
|
||||||
|
|
||||||
$intro = pht(
|
$intro = pht(
|
||||||
'If your new to Phabricator, these optional steps can help you learn '.
|
'If you\'re new to Phabricator, these optional steps can help you learn '.
|
||||||
'the basics. Conceptually, Phabricator is structured as a graph, and '.
|
'the basics. Conceptually, Phabricator is structured as a graph, and '.
|
||||||
'repositories, tasks, and projects are all independent from each other. '.
|
'repositories, tasks, and projects are all independent from each other. '.
|
||||||
'Feel free to set up Phabricator for how you work best, and explore '.
|
'Feel free to set up Phabricator for how you work best, and explore '.
|
||||||
|
|
Loading…
Reference in a new issue