Subversion Repositories logviewer

Compare Revisions

Regard whitespace Rev 7 → Rev 8

/trunk/index.php
17,10 → 17,14
* limitations under the License.
*/
 
$hostname = trim(file_get_contents('/etc/hostname'));
 
if (file_exists(__DIR__."/config_$hostname.inc.php")) {
require_once __DIR__."/config_$hostname.inc.php";
} else {
require_once __DIR__.'/config.inc.php';
}
 
$hostname = trim(file_get_contents('/etc/hostname'));
 
if (file_exists(__DIR__."/db_$hostname.inc.php")) {
require_once __DIR__."/db_$hostname.inc.php";
} else {