From 3da16d1aebf5db2ae9fd7fd680f7214d1028d5d3 Mon Sep 17 00:00:00 2001 From: softarius Date: Tue, 28 May 2019 11:26:46 +0300 Subject: [PATCH] Update libraries/joomla/database/driver/postgresql.php Co-Authored-By: SharkyKZ --- libraries/joomla/database/driver/postgresql.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/joomla/database/driver/postgresql.php b/libraries/joomla/database/driver/postgresql.php index 57f2b8709314c..b8391b1595048 100644 --- a/libraries/joomla/database/driver/postgresql.php +++ b/libraries/joomla/database/driver/postgresql.php @@ -407,7 +407,7 @@ public function getTableColumns($table, $typeOnly = true) $tableSub = $this->replacePrefix($table); $fn = explode('.', $tableSub); - if (count($fn) == 2) + if (count($fn) === 2) { $schema = $fn[0]; $tableSub = $fn[1];