Skip to content

Commit

Permalink
Merge branch 'master' of github.com:virtualmin/virtualmin-nginx
Browse files Browse the repository at this point in the history
  • Loading branch information
jcameron committed Aug 15, 2020
2 parents a4c77af + 7a41d0d commit 8ab4b97
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion module.info
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
desc=Nginx Webserver
category=servers
version=2.11
version=2.14
readonly=1
2 changes: 1 addition & 1 deletion virtual_feature.pl
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ sub feature_modify
# Rename log files if needed
my $new_alog = &virtual_server::get_apache_template_log($d, 0);
my $new_elog = &virtual_server::get_apache_template_log($d, 1);
if ($old_alog && $old_elog && $old_alog ne $new_alog) {
if (defined($old_alog) && defined($old_elog) && $old_alog ne $new_alog) {
&$virtual_server::first_print($text{'feat_modifylog'});
my $server = &find_domain_server($d);
if (!$server) {
Expand Down

0 comments on commit 8ab4b97

Please sign in to comment.