make it easier for maintainers to set un/pw in environments that don't pass shell variables

This commit is contained in:
Christopher Jones 2009-07-19 16:08:44 +00:00
parent 01f090e30a
commit 880c08e16a

View File

@ -1,6 +1,10 @@
<?php
include "details.inc";
if (file_exists("details_local.inc")) {
include("details_local.inc"); // this file is not part of the source distribution; make it your own local variant of details.inc
} else {
include "details.inc";
}
if (!empty($dbase)) {
$c = @oci_connect($user, $password, $dbase);