We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5108f3e commit 4d39237Copy full SHA for 4d39237
1 file changed
lib/Routes/Account.php
@@ -172,7 +172,7 @@ public static function respondToLogin() {
172
Session::start($_POST['username']);
173
$user = User::getUser($_POST['username']);
174
if (!isset($_POST['redirect_uri']) || $_POST['redirect_uri'] === '') {
175
- header("Location: /dashboard/#webId=" . urlencode($user['webId']));
+ header("Location: /dashboard/#webID/" . urlencode($user['webId']));
176
exit();
177
}
178
header("Location: " . urldecode($_POST['redirect_uri'])); // FIXME: Do we need to harden this?
0 commit comments