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:24 +00:00
parent ce919053f3
commit 085daea052

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);