From 78380e0dbf490b7781c707c806cfdcab56d1a845 Mon Sep 17 00:00:00 2001 From: DariusIII Date: Fri, 13 Apr 2018 14:15:26 +0200 Subject: [PATCH] Update redirect on new rss key generation --- Changelog | 1 + app/Http/Controllers/ProfileController.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Changelog b/Changelog index 9f2a91781..efc2eaf41 100755 --- a/Changelog +++ b/Changelog @@ -1,4 +1,5 @@ 2018-04-13 DariusIII + * Chg: Update redirect on new rss key generation * Chg: Add option to edit profile to ProfileController * Chg: Add MyShowsController, adjust rest of the controllers and classes * Chg: Add MyMoviesController diff --git a/app/Http/Controllers/ProfileController.php b/app/Http/Controllers/ProfileController.php index 42ec46d90..0e12d3d6e 100644 --- a/app/Http/Controllers/ProfileController.php +++ b/app/Http/Controllers/ProfileController.php @@ -143,7 +143,7 @@ class ProfileController extends BasePageController case 'newapikey': User::updateRssKey($userid); - return redirect('profileedit'); + return redirect('profile'); break; case 'clearcookies': $sab->unsetCookie();