From: Sloane Bernstein Date: Tue, 16 Feb 2021 22:19:09 +0000 (-0600) Subject: Restore support for PgSQL 9.4 and below X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=HEAD;p=phppgadmin.git Restore support for PgSQL 9.4 and below The addition of support for PostgreSQL 9.6 and above neglected to change the `Postgres94` class to inherit from `Postgres95` instead of the latest `Postgres` class. This change restores the chain of inheritance, so that `Postgres94` and classes below see overridden methods from `Postgres95` and above. --- diff --git a/classes/database/Postgres94.php b/classes/database/Postgres94.php index 908825e5..913ea044 100644 --- a/classes/database/Postgres94.php +++ b/classes/database/Postgres94.php @@ -5,9 +5,9 @@ * */ -include_once('./classes/database/Postgres.php'); +include_once('./classes/database/Postgres95.php'); -class Postgres94 extends Postgres { +class Postgres94 extends Postgres95 { var $major_version = 9.4;