Revision a7951d4a
Added by Ermal LUÇI about 14 years ago
etc/inc/wizardapp.inc | ||
---|---|---|
167 | 167 |
|
168 | 168 |
/* asterisk server / same as vonage */ |
169 | 169 |
$voiplist['Asterisk'] = array(); |
170 |
$voiplist['Asterisk'][] = array($_POST['provider'], 'udp', '5060', '5069', 'both');
|
|
171 |
$voiplist['Asterisk'][] = array($_POST['provider'], 'udp', '10000', '20000', 'both');
|
|
170 |
$voiplist['Asterisk'][] = array('Asterisk', 'udp', '5060', '5069', 'both');
|
|
171 |
$voiplist['Asterisk'][] = array('Asterisk', 'udp', '10000', '20000', 'both');
|
|
172 | 172 |
|
173 | 173 |
/* VoicePulse server */ |
174 | 174 |
$voiplist['VoicePulse'] = array(); |
Also available in: Unified diff
Declare the arrays as global since that is what they are. Correct the name of asterisk in the global defniition.