From 5a23fdae6e4c0b5806d367fd4877e05be5cc290b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Magnus=20Le=C3=9Fmann?= Date: Thu, 24 Jan 2019 09:29:35 +0100 Subject: [PATCH 1/2] Fix missing encoding of file editing urls --- resources/themes/pterodactyl/server/files/list.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/themes/pterodactyl/server/files/list.blade.php b/resources/themes/pterodactyl/server/files/list.blade.php index e6a252e5f..f8abc5a7b 100644 --- a/resources/themes/pterodactyl/server/files/list.blade.php +++ b/resources/themes/pterodactyl/server/files/list.blade.php @@ -141,7 +141,7 @@ @if(in_array($file['mime'], $editableMime)) @can('edit-files', $server) - {{ $file['entry'] }} + {{ $file['entry'] }} @else {{ $file['entry'] }} @endcan From 789d8308f184338aba61f7d42882e496163e041e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Magnus=20Le=C3=9Fmann?= Date: Thu, 24 Jan 2019 09:31:39 +0100 Subject: [PATCH 2/2] Update changelog --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 62780484e..6bb7dce74 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,8 @@ This project follows [Semantic Versioning](http://semver.org) guidelines. * Fixes an issue with the locations API endpoint referencing an invalid namespace. * Fixes the `store()` function on the locations API not working due to an incorrect return typehint. * Fixes daemon secrets not being able to be reset on a Node. - +* Fixes an issue where files were not editable due to missing URL encoding in the file manager. + ### Updated * Upgraded core to use Laravel `5.7.14`.