diff options
author | Georg Ehrke <developer@georgehrke.com> | 2014-01-11 11:51:28 +0100 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2014-01-30 16:32:45 +0100 |
commit | c5742520e132dc072bd8e5f69e5568d5c16c3f1e (patch) | |
tree | 79f60d2409156263b428052022026b70a6c81640 /core/ajax | |
parent | 299a8285bd2601ccbac988b2e3e9b067d47921a2 (diff) | |
download | nextcloud-server-c5742520e132dc072bd8e5f69e5568d5c16c3f1e.tar.gz nextcloud-server-c5742520e132dc072bd8e5f69e5568d5c16c3f1e.zip |
don't urldecode get var, php does this automatically
Diffstat (limited to 'core/ajax')
-rw-r--r-- | core/ajax/preview.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/ajax/preview.php b/core/ajax/preview.php index af0f0493f4c..d85dff7632f 100644 --- a/core/ajax/preview.php +++ b/core/ajax/preview.php @@ -7,7 +7,7 @@ */ \OC_Util::checkLoggedIn(); -$file = array_key_exists('file', $_GET) ? (string) urldecode($_GET['file']) : ''; +$file = array_key_exists('file', $_GET) ? (string) $_GET['file'] : ''; $maxX = array_key_exists('x', $_GET) ? (int) $_GET['x'] : '36'; $maxY = array_key_exists('y', $_GET) ? (int) $_GET['y'] : '36'; $scalingUp = array_key_exists('scalingup', $_GET) ? (bool) $_GET['scalingup'] : true; @@ -26,6 +26,7 @@ if($maxX === 0 || $maxY === 0) { exit; } + try{ $preview = new \OC\Preview(\OC_User::getUser(), 'files'); $preview->setFile($file); |