diff --git a/docs/conf_examples/extensions.conf.sample b/docs/conf_examples/extensions.conf.sample index 7aabeeb5..ee59e4e5 100644 --- a/docs/conf_examples/extensions.conf.sample +++ b/docs/conf_examples/extensions.conf.sample @@ -15,6 +15,7 @@ SIPtrunk=SIP/1234:PASSWORD@sip.provider.net ; SIP trunk [trunkinbound] ; DID call routing process +; exten => _XXXXXXXXXX,1,AGI(agi-DID_route.agi) ; use this one instead of the one below if you are having delay issues, and match to number of received digits exten => _X.,1,AGI(agi-DID_route.agi) ; FastAGI for VICIDIAL/astGUIclient call logging diff --git a/docs/conf_examples/extensions.conf.sample-1.4 b/docs/conf_examples/extensions.conf.sample-1.4 index d1d2e266..12b8093b 100644 --- a/docs/conf_examples/extensions.conf.sample-1.4 +++ b/docs/conf_examples/extensions.conf.sample-1.4 @@ -15,7 +15,7 @@ SIPtrunk=SIP/1234:PASSWORD@sip.provider.net ; SIP trunk [trunkinbound] ; DID call routing process -; exten => _X.,1,Set(CALLERID(num)=${CALLERID(num):1}) ; removes first leading character from inbound callerid +; exten => _XXXXXXXXXX,1,AGI(agi-DID_route.agi) ; use this one instead of the one below if you are having delay issues, and match to number of received digits exten => _X.,1,AGI(agi-DID_route.agi) ; FastAGI for VICIDIAL/astGUIclient call logging diff --git a/www/agc/manager_send.php b/www/agc/manager_send.php index c22953aa..c78fc445 100644 --- a/www/agc/manager_send.php +++ b/www/agc/manager_send.php @@ -1266,7 +1266,7 @@ if ($ACTION=="RedirectXtraNeW") if ($WeBRooTWritablE > 0) { $fp = fopen ("./vicidial_debug.txt", "a"); - fwrite ($fp, "$NOW_TIME|RDX|$filename|$user|$campaign|$$channel|$extrachannel|$queryCID|$exten|$ext_context|ext_priority|$session_id|\n"); + fwrite ($fp, "$NOW_TIME|RDX|$filename|$user|$campaign|$channel|$extrachannel|$queryCID|$exten|$ext_context|ext_priority|$session_id|\n"); fclose($fp); } } diff --git a/www/agc/vicidial.php b/www/agc/vicidial.php index a52d46b7..95e01ddc 100644 --- a/www/agc/vicidial.php +++ b/www/agc/vicidial.php @@ -8,6 +8,7 @@ # - manager_send.php: Sends manager actions to the DB for execution # - conf_exten_check.php: time sync and status updater, calls in queue # - vdc_script_display.php: displays script with variables +# - vdc_form_display.php: display custom fields form # # CHANGELOG # 50607-1426 - First Build of VICIDIAL web client basic login process finished @@ -317,10 +318,11 @@ # 101004-1322 - Added "IVR Park Call" button in agent interface # 101006-1358 - Raised limits on several dynamic items from the database # 101008-0356 - Added manual_preview_dial and two new variables for recording filenames +# 101012-1656 - Added scroll command at dispo submission to for scrolling to the top of the screen # -$version = '2.4-295'; -$build = '101008-0356'; +$version = '2.4-296'; +$build = '101012-1656'; $mel=1; # Mysql Error Log enabled = 1 $mysql_log_count=68; $one_mysql_log=0; @@ -8056,6 +8058,8 @@ if ($enable_fast_refresh < 1) {echo "\tvar refresh_interval = 1000;\n";} LogouT('SHIFT'); } } + // scroll back to the top of the page + scroll(0,0); } }