Skip to content

Commit

Permalink
Item14408: Fix typos.
Browse files Browse the repository at this point in the history
  • Loading branch information
gac410 committed May 31, 2017
1 parent 854991f commit 0fb3b48
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/Foswiki/Configure/Wizards/CreateVHost.pm
Expand Up @@ -122,7 +122,7 @@ sub create_vhost_2 {
my $vhost = $args->{name};
my $template = $args->{template};
my $cfgtemplate = $args->{cfgtemplate};
my $createpasswd = $args->{createpasswd};
my $createpasswd = $args->{createpasswd} || '';

my $form =
'<form id="confirm_vhost">'
Expand Down Expand Up @@ -337,8 +337,8 @@ sub _createFromScratch {

File::Path::make_path( "$args->{vdir}/$args->{name}/working/work_areas",
{ mode => DIRECTORY } );
File::Path::make_path("$args->{vdir}/$args->{name}/working/tmp"),
{ mode => DIRECTORY };
File::Path::make_path("$args->{vdir}/$args->{name}/working/tmp",
{ mode => DIRECTORY } );
File::Path::make_path(
"$args->{vdir}/$args->{name}/working/registration_approvals",
{ mode => DIRECTORY } );
Expand Down

0 comments on commit 0fb3b48

Please sign in to comment.