From 3265cc8ef4ed8ad6223cb6fa63f95ccd594d59bf Mon Sep 17 00:00:00 2001 From: Luke Tainton Date: Thu, 13 Aug 2020 20:11:35 +0100 Subject: [PATCH 1/3] Update assigned-issues-inprogress.yml --- .github/workflows/assigned-issues-inprogress.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/assigned-issues-inprogress.yml b/.github/workflows/assigned-issues-inprogress.yml index defa967..67de8d7 100644 --- a/.github/workflows/assigned-issues-inprogress.yml +++ b/.github/workflows/assigned-issues-inprogress.yml @@ -10,6 +10,6 @@ jobs: steps: - uses: alex-page/github-project-automation-plus@v0.2.4 with: - project: FHeD v1.0 - column: In Progress - repo-token: ${{ secrets.AUTO_TOKEN }} + project: v1.0 + column: In progress + repo-token: ${{ secrets.GITHUB_TOKEN }} -- 2.49.1 From 5fba0cd4ad25119367087dd2ebb58df2a1105fd6 Mon Sep 17 00:00:00 2001 From: Alexander Davis Date: Thu, 13 Aug 2020 20:14:17 +0100 Subject: [PATCH 2/3] Update assigned-issues-inprogress.yml (#79) Co-authored-by: Luke Tainton --- .github/workflows/assigned-issues-inprogress.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/assigned-issues-inprogress.yml b/.github/workflows/assigned-issues-inprogress.yml index defa967..67de8d7 100644 --- a/.github/workflows/assigned-issues-inprogress.yml +++ b/.github/workflows/assigned-issues-inprogress.yml @@ -10,6 +10,6 @@ jobs: steps: - uses: alex-page/github-project-automation-plus@v0.2.4 with: - project: FHeD v1.0 - column: In Progress - repo-token: ${{ secrets.AUTO_TOKEN }} + project: v1.0 + column: In progress + repo-token: ${{ secrets.GITHUB_TOKEN }} -- 2.49.1 From aa58963455034d8912878279dcbb83d2ac9d392a Mon Sep 17 00:00:00 2001 From: Alexander Davis Date: Thu, 13 Aug 2020 20:31:59 +0100 Subject: [PATCH 3/3] Fixes Firefox Bug Part of closing #78 --- app/public/actions/download.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/public/actions/download.php b/app/public/actions/download.php index 953fcd1..2c914dd 100644 --- a/app/public/actions/download.php +++ b/app/public/actions/download.php @@ -20,7 +20,7 @@ finfo_close($finfo); //Use Content-Disposition: attachment to specify the filename - header('Content-Disposition: attachment; filename='.$remote_filename); + header('Content-Disposition: attachment; filename="'.$remote_filename.'"'); //No cache header('Expires: 0'); -- 2.49.1