Skip to content
Snippets Groups Projects
Commit f2a2f77a authored by anarcat's avatar anarcat
Browse files

#1052028 by tbosviel - fix php 5.3 compatibility warning

parent e98d144c
No related branches found
No related tags found
No related merge requests found
......@@ -284,7 +284,7 @@ class provisionService_dns extends provisionService {
if ($status) {
drush_log(dt("creating zone configuration on slaves"));
$status = $this->_each_server("create_zone", $zone);
$status = $this->_each_server("create_zone", array($zone));
}
return $status;
}
......@@ -298,7 +298,7 @@ class provisionService_dns extends provisionService {
if ($status) {
drush_log(dt("deleting zone configuration from slaves"));
$status = $this->_each_server("delete_zone", $zone);
$status = $this->_each_server("delete_zone", array($zone));
}
return $status;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment