Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15453231
D18820.id45160.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D18820.id45160.diff
View Options
diff --git a/src/aphront/response/Aphront403Response.php b/src/aphront/response/Aphront403Response.php
--- a/src/aphront/response/Aphront403Response.php
+++ b/src/aphront/response/Aphront403Response.php
@@ -25,10 +25,17 @@
$request = $this->getRequest();
$user = $request->getUser();
+ $is_serious = PhabricatorEnv::getEnvConfig('phabricator.serious-business');
+ if ($is_serious) {
+ $button_text = pht('Back');
+ } else {
+ $button_text = pht('Peace Out');
+ }
+
$dialog = id(new AphrontDialogView())
->setUser($user)
->setTitle(pht('403 Forbidden'))
- ->addCancelButton('/', pht('Peace Out'))
+ ->addCancelButton('/', $button_text)
->appendParagraph($forbidden_text);
$view = id(new PhabricatorStandardPageView())
diff --git a/src/aphront/response/Aphront404Response.php b/src/aphront/response/Aphront404Response.php
--- a/src/aphront/response/Aphront404Response.php
+++ b/src/aphront/response/Aphront404Response.php
@@ -10,14 +10,24 @@
$request = $this->getRequest();
$user = $request->getUser();
+ $is_serious = PhabricatorEnv::getEnvConfig('phabricator.serious-business');
+ if ($is_serious) {
+ $body = pht(
+ 'The link you clicked may be misspelled or the page may '.
+ 'have been removed.');
+ $button_text = pht('Back');
+ } else {
+ $body = pht(
+ 'Do not dwell in the past, do not dream of the future, '.
+ 'concentrate the mind on the present moment.');
+ $button_text = pht('Focus');
+ }
+
$dialog = id(new AphrontDialogView())
->setUser($user)
->setTitle(pht('404 Not Found'))
- ->addCancelButton('/', pht('Focus'))
- ->appendParagraph(
- pht(
- 'Do not dwell in the past, do not dream of the future, '.
- 'concentrate the mind on the present moment.'));
+ ->addCancelButton('/', $button_text)
+ ->appendParagraph($body);
$view = id(new PhabricatorStandardPageView())
->setTitle(pht('404 Not Found'))
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Mar 30, 10:20 AM (5 d, 16 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7393127
Default Alt Text
D18820.id45160.diff (1 KB)
Attached To
Mode
D18820: Reduce mirth in 403/404 pages
Attached
Detach File
Event Timeline
Log In to Comment