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 a6b3c7e..c568743 100644
--- a/classes/PhpIsisDb.php
+++ b/classes/PhpIsisDb.php
@@ -32,7 +32,7 @@ class PhpIsisDb implements IsisDb {
// Open the database.
$name = $schema['db']['name'];
- $this->db = isis_open("db/$name/$name");
+ $this->db = isis_open(CinisisDb::file("$name/$name", 'db'));
}
/**
@@ -57,7 +57,7 @@ class PhpIsisDb implements IsisDb {
$data = $this->tag(isis_fetch_array($results));
// Charset conversion.
- array_walk_recursive($data, array('PhpIsisDb', 'charset'));
+ array_walk_recursive($data, array(__CLASS__, 'charset'));
// Return the result.
return $data;