issue59, further cleanup code after removing html tables
[phpfspot.git] / phpfspot_db.php
index 4e87cf9c87927978eb2ed671d7554cc5e2fe5458..df41e73e7bd9cc31881ca8d916ffaf405f26e878 100644 (file)
@@ -73,6 +73,7 @@ class PHPFSPOT_DB {
                $this->setConnStatus(false);
             }
             else {
+               sqlite3_create_function($this->db, 'basename', 1, 'basename');
                $this->setConnStatus(true);
             }
             break;
@@ -202,7 +203,7 @@ class PHPFSPOT_DB {
          $result = $this->db_query($query);
          switch($this->parent->cfg->db_access) {
             case 'native':
-               $row = $result->fetchRow();
+               $row = $this->db_fetch_object($result);
                break;
             case 'pdo':
                $row = $result[0];