diff options
author | Robert Treat | 2015-02-16 03:02:15 +0000 |
---|---|---|
committer | Robert Treat | 2015-02-16 03:02:15 +0000 |
commit | 775e9613903b043ede4cb5254f5ba9d8363b2f05 (patch) | |
tree | 5f182215981c8cf333e6d74894d4f17452f45586 | |
parent | e7d13050ac738d4cebfb6a90d1c40e816dbdccc3 (diff) |
Fix help links for pg 9.3 / 9.4
-rw-r--r-- | help/PostgresDoc93.php | 13 | ||||
-rw-r--r-- | help/PostgresDoc94.php | 13 |
2 files changed, 26 insertions, 0 deletions
diff --git a/help/PostgresDoc93.php b/help/PostgresDoc93.php new file mode 100644 index 00000000..014b0c84 --- /dev/null +++ b/help/PostgresDoc93.php @@ -0,0 +1,13 @@ +<?php + +/** + * Help links for PostgreSQL 9.3 documentation + * + * $Id: PostgresDoc84.php,v 1.3 2008/11/18 21:35:48 ioguix Exp $ + */ + +include('./help/PostgresDoc92.php'); + +$this->help_base = sprintf($GLOBALS['conf']['help_base'], '9.3'); + +?> diff --git a/help/PostgresDoc94.php b/help/PostgresDoc94.php new file mode 100644 index 00000000..94a1dedc --- /dev/null +++ b/help/PostgresDoc94.php @@ -0,0 +1,13 @@ +<?php + +/** + * Help links for PostgreSQL 9.4 documentation + * + * $Id: PostgresDoc84.php,v 1.3 2008/11/18 21:35:48 ioguix Exp $ + */ + +include('./help/PostgresDoc93.php'); + +$this->help_base = sprintf($GLOBALS['conf']['help_base'], '9.4'); + +?> |