From: Brion Vibber Date: Fri, 6 Aug 2004 21:33:51 +0000 (+0000) Subject: Fix parse error (missing semicolon). Don't know if this runs currently though. X-Git-Tag: 1.5.0alpha1~2495 X-Git-Url: http://git.cyclocoop.org/%24self?a=commitdiff_plain;h=1c7177a65c0a9c07ccf73a8abbdd533bbfd0585b;p=lhc%2Fweb%2Fwiklou.git Fix parse error (missing semicolon). Don't know if this runs currently though. --- diff --git a/includes/DatabasePostgreSQL.php b/includes/DatabasePostgreSQL.php index 36b622ceaf..af7d96e972 100644 --- a/includes/DatabasePostgreSQL.php +++ b/includes/DatabasePostgreSQL.php @@ -264,7 +264,7 @@ class DatabasePgsql extends Database { } else { $sql .= " AND "; } - $sql .= "$col=" . $this->addQuotes( $row[$col] ) + $sql .= "$col=" . $this->addQuotes( $row[$col] ); } } else { $sql .= "$index=" . $this->addQuotes( $row[$index] );