Skip to content

Commit

Permalink
Update libraries/joomla/database/driver/postgresql.php
Browse files Browse the repository at this point in the history
Co-Authored-By: SharkyKZ <sharkykz@gmail.com>
  • Loading branch information
softarius and SharkyKZ committed May 28, 2019
1 parent d16b754 commit 3da16d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/joomla/database/driver/postgresql.php
Original file line number Diff line number Diff line change
Expand Up @@ -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];
Expand Down

0 comments on commit 3da16d1

Please sign in to comment.