diff options
author | zotlabs <mike@macgirvin.com> | 2016-10-25 11:48:22 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-25 11:48:22 +1100 |
commit | 2d2ac98b3d9a24e0601e22b0d6ed4b57f7071911 (patch) | |
tree | 8792f3a8fc16560261f658d90e952b348163a6be /include/dba/dba_mysql.php | |
parent | f1fc2018626a5349000e666278571575f95a7acc (diff) | |
parent | 5dc8c54b8d3bd696095788704d4f8f8228c53522 (diff) | |
download | volse-hubzilla-2d2ac98b3d9a24e0601e22b0d6ed4b57f7071911.tar.gz volse-hubzilla-2d2ac98b3d9a24e0601e22b0d6ed4b57f7071911.tar.bz2 volse-hubzilla-2d2ac98b3d9a24e0601e22b0d6ed4b57f7071911.zip |
Merge pull request #559 from zotlabs/pdo
Pdo DB driver
Diffstat (limited to 'include/dba/dba_mysql.php')
-rwxr-xr-x | include/dba/dba_mysql.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/dba/dba_mysql.php b/include/dba/dba_mysql.php index 3cadad6dc..8b51cf578 100755 --- a/include/dba/dba_mysql.php +++ b/include/dba/dba_mysql.php @@ -5,7 +5,7 @@ require_once('include/dba/dba_driver.php'); class dba_mysql extends dba_driver { - function connect($server, $port, $user,$pass,$db) { + function connect($server, $scheme, $port, $user,$pass,$db) { $this->db = mysql_connect($server.":".$port,$user,$pass); if($this->db && mysql_select_db($db,$this->db)) { $this->connected = true; |