Make phpPgAdmin work with PgSQL 15

This commit is contained in:
cytopia 2022-12-04 10:38:28 +01:00
parent b00b1e77b9
commit 5cce2a8a89
No known key found for this signature in database
GPG Key ID: 6D56EDB8695128A2

View File

@ -76,6 +76,7 @@ class Connection {
// Detect version and choose appropriate database driver
switch (substr($version,0,2)) {
case '15': return 'Postgres';break;
case '14': return 'Postgres';break;
case '13': return 'Postgres13';break;
case '12': return 'Postgres12';break;