From 63db49aeba79cbbea60a38f8eb9a8b8eaf4c78c0 Mon Sep 17 00:00:00 2001 From: Ilia Rostovtsev Date: Sun, 20 Jun 2021 21:06:52 +0300 Subject: [PATCH] Keep logicaly bind lines together --- web-lib-funcs.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web-lib-funcs.pl b/web-lib-funcs.pl index 5fe61a64e..a5eb6d57a 100755 --- a/web-lib-funcs.pl +++ b/web-lib-funcs.pl @@ -5013,13 +5013,13 @@ $current_theme = $current_themes[0]; @theme_root_directories = map { "$root_directory/$_" } @current_themes; $theme_root_directory = $theme_root_directories[0]; @theme_configs = ( ); -my $theme_tconfig = "$config_directory/$current_theme/config"; foreach my $troot (@theme_root_directories) { my %onetconfig; &read_file_cached("$troot/config", \%onetconfig); &read_file_cached("$troot/config", \%tconfig); push(@theme_configs, \%onetconfig); } +my $theme_tconfig = "$config_directory/$current_theme/config"; if (-r $theme_tconfig) { &read_file_cached($theme_tconfig, \%tconfig); }