We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4d09e6 commit 6ed865cCopy full SHA for 6ed865c
src/controllers/DownloadController.php
@@ -39,6 +39,12 @@ public function getDownload()
39
{
40
$file_to_download = Input::get('file');
41
$dir = Input::get('dir');
42
- return Response::download(base_path() . "/" . $this->file_location . $dir . "/" . $file_to_download);
+ return Response::download(base_path()
43
+ . "/"
44
+ . $this->file_location
45
+ . $dir
46
47
+ . $file_to_download);
48
}
49
+
50
src/views/index.blade.php
@@ -243,6 +243,7 @@ function trash(x) {
243
if (data != "OK") {
244
notify(data);
245
} else {
246
+ loadFiles();
247
loadImages();
248
249
});
0 commit comments