Skip to content

Commit

Permalink
organize records by type
Browse files Browse the repository at this point in the history
  • Loading branch information
dunkrupp committed Mar 3, 2018
1 parent 008ed9c commit 8218588
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Classes/DnsRecord.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public function getRecords() {
foreach ($allRecords as $record) {
$type = strtolower($record['type']);
if (!empty($this->mapped_options[$type])) {
$records[] = $record;
$records[$type][] = $record;
}
}
}
Expand Down

0 comments on commit 8218588

Please sign in to comment.