Skip to content

Commit

Permalink
Fix incorrect variable name, which stopped git from being enabled for…
Browse files Browse the repository at this point in the history
  • Loading branch information
jcameron committed Apr 22, 2015
1 parent 1916622 commit c0d0a29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion virtualmin-git-lib.pl
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ sub save_rep_users
local ($d, $rep, $users) = @_;
local @usernames = map { $_->{'user'} } @$users;
local @ports = ( $d->{'web_port'} );
push(@port, $d->{'web_sslport'}) if ($d->{'ssl'});
push(@ports, $d->{'web_sslport'}) if ($d->{'ssl'});
foreach my $p (@ports) {
local ($virt, $vconf, $conf) =
&virtual_server::get_apache_virtual($d->{'dom'}, $p);
Expand Down

0 comments on commit c0d0a29

Please sign in to comment.