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(); diff --git a/changelog.md b/changelog.md index 426b8390..f4ab8963 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,8 @@ # Changelog +## Version 0.5.2 (2017-05-18) + - Fix variable issues in making client page + ## Version 0.5.1 (2017-05-18) - Fix issue on micropub create page when not logged in