Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 1385 → Rev 1388

/asterisk-stats/trunk/includes/defaults.php
1,12 → 1,14
<?php
 
$g_site_title = 'Asterisk Web Interface';
$g_site_style = 'style.css';
$g_config = array(
'site_title' => 'Asterisk Web Interface',
'site_style' => 'style.css',
 
$db_type = 'PGSQL';
$db_host = 'localhost';
$db_user = 'astweb';
$db_password = 'password';
$db_database = 'asterisk';
'db_type' => 'PGSQL',
'db_host' => 'localhost',
'db_user' => 'astweb',
'db_password' => 'password',
'db_database' => 'asterisk',
);
 
?>