blob: 308eca65c52479a856e4376cc33e62d6894f66e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<?php
/**
* PostgreSQL 9.3 support
*
*/
include_once('./classes/database/Postgres94.php');
class Postgres93 extends Postgres94 {
var $major_version = 9.3;
/**
* Constructor
* @param $conn The database connection
*/
function __construct($conn) {
parent::__construct($conn);
}
// Help functions
function getHelpPages() {
include_once('./help/PostgresDoc93.php');
return $this->help_page;
}
}
?>
|