Skip to content

Commit

Permalink
Merge pull request #3 from fogeytron/create-zone-fix
Browse files Browse the repository at this point in the history
Pass serial style when creating zones
  • Loading branch information
tfountain committed Nov 4, 2014
2 parents b770b10 + e695f8f commit 2ae7562
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/TrafficManagement.php
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,8 @@ public function createZone($zoneName, $rname, $defaultTtl, $serialStyle = 'incre

$params = array(
'rname' => $rname,
'ttl' => $defaultTtl
'ttl' => $defaultTtl,
'serial_style' => $serialStyle
);

$result = $this->apiClient->post('/Zone/'.$zoneName, $params);
Expand Down

0 comments on commit 2ae7562

Please sign in to comment.