diff options
author | Silvio <silvio@devlet.com.br> | 2010-04-08 11:55:02 -0300 |
---|---|---|
committer | Silvio <silvio@devlet.com.br> | 2010-04-08 11:55:02 -0300 |
commit | 1f0a5aa6b243e2b8bba66fc62bd029e2fa801e4b (patch) | |
tree | 42a49cfc1cf5422c5b42364b711c5b2597956cfb /classes/PhpIsisDb.php | |
parent | 923e3c23d05dc235f26d8cc3d96e4f43e1754b32 (diff) | |
download | cinisis-1f0a5aa6b243e2b8bba66fc62bd029e2fa801e4b.tar.gz cinisis-1f0a5aa6b243e2b8bba66fc62bd029e2fa801e4b.tar.bz2 |
Sorting out folder schene
Diffstat (limited to 'classes/PhpIsisDb.php')
-rw-r--r-- | classes/PhpIsisDb.php | 4 |
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; |