c8cf2e5d83
update to 5.0.2 OBS-URL: https://build.opensuse.org/request/show/71716 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/phpPgAdmin?expand=0&rev=11
20 lines
874 B
Diff
20 lines
874 B
Diff
diff -ruN phpPgAdmin-4.2.3-orig/libraries/lib.inc.php phpPgAdmin-4.2.3/libraries/lib.inc.php
|
|
--- phpPgAdmin-4.2.3-orig/libraries/lib.inc.php 2010-03-28 23:46:17.000000000 +0200
|
|
+++ phpPgAdmin-4.2.3/libraries/lib.inc.php 2011-02-19 00:50:02.000000000 +0100
|
|
@@ -27,12 +27,12 @@
|
|
exit(sprintf('Version of PHP not supported. Please upgrade to version %s or later.', $phpMinVer));
|
|
|
|
// Check to see if the configuration file exists, if not, explain
|
|
- if (file_exists('conf/config.inc.php')) {
|
|
+ if (file_exists('/etc/phpPgAdmin/config.inc.php')) {
|
|
$conf = array();
|
|
- include('./conf/config.inc.php');
|
|
+ include('/etc/phpPgAdmin/config.inc.php');
|
|
}
|
|
else {
|
|
- echo 'Configuration error: Copy conf/config.inc.php-dist to conf/config.inc.php and edit appropriately.';
|
|
+ echo 'Configuration error: Can not include config /etc/phpPgAdmin/config.inc.php.';
|
|
exit;
|
|
}
|
|
|