Differential D9431 Diff 22523 src/applications/auth/controller/PhabricatorAuthValidateController.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/auth/controller/PhabricatorAuthValidateController.php
| Show First 20 Lines • Show All 43 Lines • ▼ Show 20 Lines | if ($actual_phusr != $expect_phusr) { | ||||
| 'phusr', | 'phusr', | ||||
| $expect_phusr); | $expect_phusr); | ||||
| } | } | ||||
| } | } | ||||
| if (!$failures) { | if (!$failures) { | ||||
| if (!$viewer->getPHID()) { | if (!$viewer->getPHID()) { | ||||
| $failures[] = pht( | $failures[] = pht( | ||||
| "Login cookie was set correctly, but your login session is not ". | 'Login cookie was set correctly, but your login session is not '. | ||||
| "valid. Try clearing cookies and logging in again."); | 'valid. Try clearing cookies and logging in again.'); | ||||
| } | } | ||||
| } | } | ||||
| if ($failures) { | if ($failures) { | ||||
| return $this->renderErrors($failures); | return $this->renderErrors($failures); | ||||
| } | } | ||||
| $finish_uri = $this->getApplicationURI('finish/'); | $finish_uri = $this->getApplicationURI('finish/'); | ||||
| Show All 10 Lines | |||||