aboutsummaryrefslogtreecommitdiffstats
path: root/index.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-04-22 20:02:21 -0700
committerfriendica <info@friendica.com>2013-04-22 20:02:21 -0700
commit552f03122c9ec066f5728fc4629d155937fd3620 (patch)
tree1e8a585b52fa28d1c47abd70d89bb1225fe99eb7 /index.php
parent7621bd3bb171c7a4772e4663ee43b86a55a1f7c0 (diff)
downloadvolse-hubzilla-552f03122c9ec066f5728fc4629d155937fd3620.tar.gz
volse-hubzilla-552f03122c9ec066f5728fc4629d155937fd3620.tar.bz2
volse-hubzilla-552f03122c9ec066f5728fc4629d155937fd3620.zip
db abstraction layer
Diffstat (limited to 'index.php')
-rw-r--r--index.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/index.php b/index.php
index 95b7c78a9..d8be14888 100644
--- a/index.php
+++ b/index.php
@@ -36,10 +36,10 @@ $a->language = get_best_language();
*
*/
-require_once("dba.php");
+require_once("include/dba/dba_driver.php");
if(! $install) {
- $db = new dba($db_host, $db_user, $db_pass, $db_data, $install);
+ $db = dba_factory($db_host, $db_user, $db_pass, $db_data, $install);
unset($db_host, $db_user, $db_pass, $db_data);
/**