Merge pull request #2036 from owncloud/escape-only-in-template
Escape the data only in the template
This commit is contained in:
commit
927a374dbe
1 changed files with 2 additions and 2 deletions
|
@ -323,14 +323,14 @@ class OC_Util {
|
|||
$parameters[$value] = true;
|
||||
}
|
||||
if (!empty($_POST['user'])) {
|
||||
$parameters["username"] = OC_Util::sanitizeHTML($_POST['user']).'"';
|
||||
$parameters["username"] = $_POST['user'];
|
||||
$parameters['user_autofocus'] = false;
|
||||
} else {
|
||||
$parameters["username"] = '';
|
||||
$parameters['user_autofocus'] = true;
|
||||
}
|
||||
if (isset($_REQUEST['redirect_url'])) {
|
||||
$redirect_url = OC_Util::sanitizeHTML($_REQUEST['redirect_url']);
|
||||
$redirect_url = $_REQUEST['redirect_url'];
|
||||
$parameters['redirect_url'] = urlencode($redirect_url);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue