This commit is contained in:
Andy Miller
2016-05-17 16:52:22 -06:00
parent c69f414bcc
commit 48f311b458
2 changed files with 3 additions and 1 deletions

View File

@@ -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

View File

@@ -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;