We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 112ba2a commit 0cf7e59Copy full SHA for 0cf7e59
src/Controllers/RegisterController.php
@@ -126,7 +126,7 @@ public function registerAction(): RedirectResponse
126
// If an action has been defined for register, start it up.
127
$hasAction = $authenticator->startUpAction('register', $user);
128
if ($hasAction) {
129
- return redirect()->to('auth/a/show');
+ return redirect()->route('auth-action-show');
130
}
131
132
// Set the user active
src/Views/email_activate_show.php
@@ -15,7 +15,7 @@
15
16
<p><?= lang('Auth.emailActivateBody') ?></p>
17
18
- <form action="<?= site_url('auth/a/verify') ?>" method="post">
+ <form action="<?= url_to('auth-action-verify') ?>" method="post">
19
<?= csrf_field() ?>
20
21
<!-- Code -->
0 commit comments