From a6f5c80695f02b0a6fc57cd1aa38a1feca6a7b33 Mon Sep 17 00:00:00 2001 From: Manager Bot Date: Thu, 8 Dec 2022 00:08:16 +0000 Subject: [PATCH] Remove theme changes. --- Web/lib/MJB/Web/Controller/Dashboard.pm | 3 --- 1 file changed, 3 deletions(-) diff --git a/Web/lib/MJB/Web/Controller/Dashboard.pm b/Web/lib/MJB/Web/Controller/Dashboard.pm index 757b1a8..e98c2e4 100644 --- a/Web/lib/MJB/Web/Controller/Dashboard.pm +++ b/Web/lib/MJB/Web/Controller/Dashboard.pm @@ -206,7 +206,6 @@ sub blog_settings ($c) { $c->stash->{form}->{email} = $data->{email}; $c->stash->{form}->{twitter_username} = $data->{twitter_username}; $c->stash->{form}->{github_username} = $data->{github_username}; - $c->stash->{form}->{theme} = $data->{theme}; } #== @@ -227,14 +226,12 @@ sub do_blog_settings ($c) { my $email = $c->stash->{form}->{email} = $c->param( 'configEmail' ); my $twitter_username = $c->stash->{form}->{twitter_username} = $c->param( 'configTwitterUsername' ); my $github_username = $c->stash->{form}->{github_username} = $c->param( 'configGithubUsername' ); - my $theme = $c->stash->{form}->{theme} = $c->param( 'configTheme' ); $jekyll->config->data->{title} = $title; $jekyll->config->data->{description} = $desc; $jekyll->config->data->{email} = $email; $jekyll->config->data->{twitter_username} = $twitter_username; $jekyll->config->data->{github_username} = $github_username; - $jekyll->config->data->{theme} = $theme; $jekyll->write_config;