Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
nuxwin committed Nov 28, 2014
1 parent a7e09bd commit 3bada97
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
3 changes: 1 addition & 2 deletions configs/debian/apache/parts/domain_disabled.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@

Alias /errors {HOME_DIR}/errors/

<Directory {HOME_DIR}>
Options +SymLinksIfOwnerMatch
<Directory {HOME_DIR}/errors>
{AUTHZ_ALLOW_ALL}
</Directory>

Expand Down
3 changes: 1 addition & 2 deletions configs/debian/apache/parts/domain_disabled_ssl.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@

Alias /errors {HOME_DIR}/errors/

<Directory {HOME_DIR}>
Options +SymLinksIfOwnerMatch
<Directory {HOME_DIR}/errors>
{AUTHZ_ALLOW_ALL}
</Directory>

Expand Down
4 changes: 2 additions & 2 deletions engine/PerlLib/Servers/named/bind.pm
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ sub postdisableDmn
my $rs = $self->{'eventManager'}->trigger('beforeNamedPostDisableDmn', $data);
return $rs if $rs;

$rs = $self->postaddDmn($_[1]);
$rs = $self->postaddDmn($data);
return $rs if $rs;

$self->{'eventManager'}->trigger('afterNamedPostDisableDmn', $data);
Expand Down Expand Up @@ -573,7 +573,7 @@ sub postdisableSub
my $rs = $self->{'eventManager'}->trigger('beforeNamedPostDisableSub', $data);
return $rs if $rs;

$rs = $self->postaddSub($_[1]);
$rs = $self->postaddSub($data);
return $rs if $rs;

$self->{'eventManager'}->trigger('afterNamedPostDisableSub', $data);
Expand Down

0 comments on commit 3bada97

Please sign in to comment.