From 1c7177a65c0a9c07ccf73a8abbdd533bbfd0585b Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 6 Aug 2004 21:33:51 +0000 Subject: [PATCH] Fix parse error (missing semicolon). Don't know if this runs currently though. --- includes/DatabasePostgreSQL.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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] ); -- 2.20.1