mirror of
https://github.com/nextcloud/server.git
synced 2026-06-10 17:23:59 -04:00
fix character encoding bug oc-278
This commit is contained in:
parent
8991600303
commit
b6ba0f547e
1 changed files with 1 additions and 1 deletions
|
|
@ -28,7 +28,7 @@ require_once('../../../lib/base.php');
|
|||
OC_JSON::checkLoggedIn();
|
||||
|
||||
// Get paramteres
|
||||
$filecontents = htmlspecialchars_decode($_POST['filecontents']);
|
||||
$filecontents = $_POST['filecontents'];
|
||||
$path = isset($_POST['path']) ? $_POST['path'] : '';
|
||||
$mtime = isset($_POST['mtime']) ? $_POST['mtime'] : '';
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue