From db22a6cbe0c1f70e6f9405f662ac2fc711a99361 Mon Sep 17 00:00:00 2001 From: Friendika Date: Fri, 5 Nov 2010 22:23:11 -0700 Subject: [PATCH] installation var mis-tagged --- include/dba.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/dba.php b/include/dba.php index 9d0896a354..0442631948 100644 --- a/include/dba.php +++ b/include/dba.php @@ -16,7 +16,7 @@ class dba { function __construct($server,$user,$pass,$db,$install = false) { $this->db = @new mysqli($server,$user,$pass,$db); - if((mysqli_connect_errno()) && (! install)) + if((mysqli_connect_errno()) && (! $install)) system_unavailable(); }