summaryrefslogtreecommitdiff
path: root/db.class.php
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2013-12-30 13:18:58 +0100
committerChristian Pointner <equinox@spreadspace.org>2013-12-30 13:18:58 +0100
commit92b6585130b4d719d236da0e2cdce9649e538f8b (patch)
treef79d174c3be10cbf80eea6debca80042a1d8cdaa /db.class.php
parent4c98da1ceff06e565a8e85e395c747b28edef19d (diff)
parent70b378464945443b234380c5098ec7066bb0b15f (diff)
Merge branch 'master' into stable
Diffstat (limited to 'db.class.php')
-rw-r--r--db.class.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/db.class.php b/db.class.php
index 0921bc8..1a3647f 100644
--- a/db.class.php
+++ b/db.class.php
@@ -13,7 +13,7 @@ function DB($user, $pass, $host, $dbname) {
}
function connect() {
- $this->db = mysql_connect($this->host, $this->user, $this->pass)
+ $this->db = mysql_connect($this->host, $this->user, $this->pass)
or $this->error("Verbindungsaufbau fehlgeschlagen");
mysql_select_db($this->dbname);
}