Subversion Repositories general

Rev

Rev 1378 | Rev 1387 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1278 dev 1
<?php
2
 
3
$db_type = 'PGSQL';
4
$db_host = 'localhost';
5
$db_user = 'astweb';
6
$db_password = 'password';
7
$db_database = 'asterisk';
8
 
1366 dev 9
// any local specific query
10
function BaseQuery()
11
{
1369 dev 12
	return " (dstchannel is null or dstchannel != '')";
1366 dev 13
}
1278 dev 14
 
15
?>