Changeset View
Changeset View
Standalone View
Standalone View
src/applications/config/check/PhabricatorDaemonsSetupCheck.php
| Show First 20 Lines • Show All 109 Lines • ▼ Show 20 Lines | foreach ($all_daemons as $daemon) { | ||||
| if ($issues) { | if ($issues) { | ||||
| foreach ($issues as $key => $issue) { | foreach ($issues as $key => $issue) { | ||||
| $issues[$key] = phutil_tag('li', array(), $issue); | $issues[$key] = phutil_tag('li', array(), $issue); | ||||
| } | } | ||||
| $list_section = array( | $list_section = array( | ||||
| pht( | pht( | ||||
| 'The configurations differ in the following %s way(s):', | 'The configurations differ in the following %s way(s):', | ||||
| new PhutilNumber(count($issues))), | phutil_count($issues)), | ||||
| phutil_tag( | phutil_tag( | ||||
| 'ul', | 'ul', | ||||
| array(), | array(), | ||||
| $issues), | $issues), | ||||
| ); | ); | ||||
| } | } | ||||
| } | } | ||||
| ▲ Show 20 Lines • Show All 72 Lines • Show Last 20 Lines | |||||