diff options
author | fabrixxm <fabrix.xm@gmail.com> | 2013-05-10 06:13:24 -0400 |
---|---|---|
committer | fabrixxm <fabrix.xm@gmail.com> | 2013-05-10 06:13:24 -0400 |
commit | d4c07930d51244c8ae5014344c9502d010954448 (patch) | |
tree | d6e4815e0c895fdd00089a95a223456f6ba01756 /index.php | |
parent | e1c6b776c4c388b4671c0838c9d24feac42857c2 (diff) | |
download | volse-hubzilla-d4c07930d51244c8ae5014344c9502d010954448.tar.gz volse-hubzilla-d4c07930d51244c8ae5014344c9502d010954448.tar.bz2 volse-hubzilla-d4c07930d51244c8ae5014344c9502d010954448.zip |
add $db_port to .htconfig.php and $a->config['syste]['smarty3_folder'] for compiled templates
Diffstat (limited to 'index.php')
-rwxr-xr-x[-rw-r--r--] | index.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/index.php b/index.php index d8be14888..7e3fd0ef1 100644..100755 --- a/index.php +++ b/index.php @@ -39,8 +39,8 @@ $a->language = get_best_language(); require_once("include/dba/dba_driver.php"); if(! $install) { - $db = dba_factory($db_host, $db_user, $db_pass, $db_data, $install); - unset($db_host, $db_user, $db_pass, $db_data); + $db = dba_factory($db_host, $db_port, $db_user, $db_pass, $db_data, $install); + unset($db_host, $db_port, $db_user, $db_pass, $db_data); /** * Load configs from db. Overwrite configs from .htconfig.php |