aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/dba.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/dba.php b/include/dba.php
index 9d0896a35..044263194 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();
}