Differential D9431 Diff 22523 src/applications/config/controller/PhabricatorConfigIgnoreController.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/config/controller/PhabricatorConfigIgnoreController.php
| Show All 25 Lines | if ($this->verb == 'ignore') { | ||||
| $body = pht( | $body = pht( | ||||
| "You can ignore an issue if you don't want to fix it, or plan to ". | "You can ignore an issue if you don't want to fix it, or plan to ". | ||||
| "fix it later. Ignored issues won't appear on every page but will ". | "fix it later. Ignored issues won't appear on every page but will ". | ||||
| "still be shown in the list of open issues."); | "still be shown in the list of open issues."); | ||||
| } else if ($this->verb == 'unignore') { | } else if ($this->verb == 'unignore') { | ||||
| $title = pht('Unignore this setup issue?'); | $title = pht('Unignore this setup issue?'); | ||||
| $submit_title = pht('Unignore'); | $submit_title = pht('Unignore'); | ||||
| $body = pht( | $body = pht( | ||||
| "This issue will no longer be suppressed, and will return to its ". | 'This issue will no longer be suppressed, and will return to its '. | ||||
| "rightful place as a global setup warning."); | 'rightful place as a global setup warning.'); | ||||
| } else { | } else { | ||||
| throw new Exception('Unrecognized verb: ' . $this->verb); | throw new Exception('Unrecognized verb: ' . $this->verb); | ||||
| } | } | ||||
| $dialog = id(new AphrontDialogView()) | $dialog = id(new AphrontDialogView()) | ||||
| ->setUser($request->getUser()) | ->setUser($request->getUser()) | ||||
| ->setTitle($title) | ->setTitle($title) | ||||
| ->appendChild($body) | ->appendChild($body) | ||||
| Show All 22 Lines | |||||