From 69e2252fd6fc8acd8bf5b0fcecd8c329d71c9673 Mon Sep 17 00:00:00 2001 From: Friendika Date: Thu, 3 Mar 2011 15:47:13 -0800 Subject: [PATCH] that would be mysql !i! connect_errno... --- include/dba.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/dba.php b/include/dba.php index b89648bcac..d75ed560ab 100644 --- a/include/dba.php +++ b/include/dba.php @@ -20,7 +20,7 @@ class dba { function __construct($server,$user,$pass,$db,$install = false) { $this->db = @new mysqli($server,$user,$pass,$db); - if(! mysql_connect_errno()) { + if(! mysqli_connect_errno()) { $this->connected = true; } else {