summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSloane Bernstein2021-02-16 22:19:09 +0000
committerRobert Treat2021-02-17 07:10:20 +0000
commitf3171e923185c3add7c080ec0690233267c220f6 (patch)
tree2acd476c3ee0292a8b2aa3d93fa12e5be9cc9e73
parente2aa8f687573104d492311b5853c25a5dce71973 (diff)
Restore support for PgSQL 9.4 and belowHEADmaster
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.
-rw-r--r--classes/database/Postgres94.php4
1 files changed, 2 insertions, 2 deletions
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;