From 23654359fb0969ddcae457e2654357cace7c1e49 Mon Sep 17 00:00:00 2001 From: Jonny Barnes Date: Thu, 18 May 2017 16:19:37 +0100 Subject: [PATCH 1/3] Fix varaible issues --- app/Http/Controllers/MicropubClientController.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/Http/Controllers/MicropubClientController.php b/app/Http/Controllers/MicropubClientController.php index ebe28e14..2937a7d3 100644 --- a/app/Http/Controllers/MicropubClientController.php +++ b/app/Http/Controllers/MicropubClientController.php @@ -29,6 +29,11 @@ class MicropubClientController extends Controller */ public function create(Request $request) { + //initiate varaibles + $indiewebUser = null; + $syndication = null; + $mediaEndpoint = null; + $mediaURLs = null; $url = $request->session()->get('me'); if ($url) { $indiewebUser = IndieWebUser::where('me', $url)->first(); From 9d12a4d47311242715213f75ff0356a4989c97bf Mon Sep 17 00:00:00 2001 From: Jonny Barnes Date: Thu, 18 May 2017 16:20:19 +0100 Subject: [PATCH 2/3] Update changelog --- changelog.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/changelog.md b/changelog.md index 426b8390..074810b6 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,8 @@ # Changelog +## Version {next} + - Fix variable issues in making client page + ## Version 0.5.1 (2017-05-18) - Fix issue on micropub create page when not logged in From e10cae94174b71f1f8e83ce61c74821dc982eceb Mon Sep 17 00:00:00 2001 From: Jonny Barnes Date: Thu, 18 May 2017 16:20:58 +0100 Subject: [PATCH 3/3] Bump version number to 0.5.2 --- changelog.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/changelog.md b/changelog.md index 074810b6..f4ab8963 100644 --- a/changelog.md +++ b/changelog.md @@ -1,6 +1,6 @@ # Changelog -## Version {next} +## Version 0.5.2 (2017-05-18) - Fix variable issues in making client page ## Version 0.5.1 (2017-05-18)