Skip to content

Commit 58d24d7

Browse files
committed
Fix wrong controller name
1 parent 72d5d61 commit 58d24d7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Controller/Register.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public function activate()
2828
$this->userMetadataModel->remove($user_id, 'registration_token');
2929
}
3030

31-
$this->response->redirect($this->helper->url->to('auth', 'login'));
31+
$this->response->redirect($this->helper->url->to('AuthController', 'login'));
3232
}
3333

3434
/**
@@ -66,7 +66,7 @@ public function save()
6666

6767
if ($user_id !== false) {
6868
$this->postCreation($values, $user_id);
69-
return $this->response->redirect($this->helper->url->to('auth', 'login'));
69+
return $this->response->redirect($this->helper->url->to('AuthController', 'login'));
7070
} else {
7171
$errors = array('username' => array(t('Unable to create your account')));
7272
}

Plugin.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public function getPluginAuthor()
4747

4848
public function getPluginVersion()
4949
{
50-
return '1.0.3';
50+
return '1.0.4';
5151
}
5252

5353
public function getPluginHomepage()

0 commit comments

Comments
 (0)