Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/HuasoFoundries/phpPgAdmin6.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/database/Postgres.php')
-rw-r--r--src/database/Postgres.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/database/Postgres.php b/src/database/Postgres.php
index 0716aa15..42634867 100644
--- a/src/database/Postgres.php
+++ b/src/database/Postgres.php
@@ -1,7 +1,7 @@
<?php
/**
- * PHPPgAdmin v6.0.0-beta.51
+ * PHPPgAdmin v6.0.0-beta.52
*/
namespace PHPPgAdmin\Database;
@@ -358,7 +358,7 @@ class Postgres extends ADOdbBase
AND attnum IN ('".join("','", $atts)."')";
$rs = $this->selectSet($sql);
- if ($rs->RecordCount() != sizeof($atts)) {
+ if ($rs->recordCount() != sizeof($atts)) {
return -2;
}