mirror of
https://github.com/getgrav/grav-plugin-admin.git
synced 2026-05-05 19:35:38 +02:00
Fix for #595
This commit is contained in:
@@ -10,6 +10,8 @@
|
||||
* Strip HTML tags and lowercase username from login/reset forms [#577](https://github.com/getgrav/grav-plugin-admin/issues/577)
|
||||
* Fixed issue with version numbers not showing up for dependencies [#581](https://github.com/getgrav/grav-plugin-admin/issues/581)
|
||||
* Fixed editor tooltips in fullscreen mode and tablet devices rendering [#566](https://github.com/getgrav/grav-plugin-admin/issues/566)
|
||||
* Fixed issue with `file` form field not functioning [#838](https://github.com/getgrav/grav/issues/838)
|
||||
* Fixed issue with creating pages [#595](https://github.com/getgrav/grav-plugin-admin/issues/595)
|
||||
|
||||
# v1.1.0-beta.4
|
||||
## 05/09/2016
|
||||
|
||||
@@ -1633,9 +1633,9 @@ class AdminController
|
||||
public function taskContinue()
|
||||
{
|
||||
$data = (array) $this->data;
|
||||
$username = strip_tags(strtolower($data['username']));
|
||||
|
||||
if ($this->view == 'users') {
|
||||
$username = strip_tags(strtolower($data['username']));
|
||||
$this->setRedirect("{$this->view}/{$username}");
|
||||
|
||||
return true;
|
||||
|
||||
Reference in New Issue
Block a user