aboutsummaryrefslogtreecommitdiff
path: root/classes/PhpIsisDb.php
diff options
context:
space:
mode:
Diffstat (limited to 'classes/PhpIsisDb.php')
-rw-r--r--classes/PhpIsisDb.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/classes/PhpIsisDb.php b/classes/PhpIsisDb.php
index 9e885d9..136b657 100644
--- a/classes/PhpIsisDb.php
+++ b/classes/PhpIsisDb.php
@@ -25,7 +25,7 @@ class PhpIsisDb implements IsisDb {
// Save db schema.
$this->format = $schema;
- // Setup $fdt used by malete.
+ // Setup $fdt.
foreach ($schema['fields'] as $field => $info) {
$this->fdt[$field] = $info['name'];
}
@@ -105,7 +105,7 @@ class PhpIsisDb implements IsisDb {
function tag($results) {
foreach ($results as $key => $value) {
if ($key != 'mfn') {
- $name = $this->format['fields'][$key]['name'];
+ $name = $this->format['fields'][$key]['name'];
$data[$name] = $value;
}
}