fix character encoding bug oc-278

This commit is contained in:
Tom Needham 2012-03-10 14:06:30 +00:00
parent 3f507898d0
commit 1aaf008020
1 changed files with 1 additions and 1 deletions

View File

@ -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'] : '';