diff --git a/agc_2-X/trunk/docs/REQUIRED_APPS_INSTALL.txt b/agc_2-X/trunk/docs/REQUIRED_APPS_INSTALL.txt index 7061b2ad..717d6008 100644 --- a/agc_2-X/trunk/docs/REQUIRED_APPS_INSTALL.txt +++ b/agc_2-X/trunk/docs/REQUIRED_APPS_INSTALL.txt @@ -50,10 +50,11 @@ install readline install Bundle::CPAN install DBI force install DBD::mysql +install Pod::Usage +install Getopt::Long install Net::Telnet install Time::HiRes install Net::Server -install Switch install Mail::Sendmail install Unicode::Map install Jcode @@ -319,7 +320,6 @@ php -v cpan install Curses -install Getopt::Long install Net::Domain quit diff --git a/agc_2-X/trunk/docs/SCRATCH_INSTALL.txt b/agc_2-X/trunk/docs/SCRATCH_INSTALL.txt index d5258f48..bb014e5b 100644 --- a/agc_2-X/trunk/docs/SCRATCH_INSTALL.txt +++ b/agc_2-X/trunk/docs/SCRATCH_INSTALL.txt @@ -389,10 +389,8 @@ a more loaded system. SUBPHASE 3.2: Installing Perl Modules -NOTE - you can install ActiveState http://www.activestate.com perl, but it is -not required. Here's the source for ActiveState -Perl 5.8: (it's free) - http://downloads.activestate.com/ActivePerl/src/5.8/AP817_source.tgz +NOTE - you can install ActiveState http://www.activestate.com perl, but it is not required. + http://www.activestate.com/activeperl/downloads cpan is the "Comprehensive Perl Archive Network". It's a mirrored archive of most of the perl modules out there complete with a installation and management @@ -419,12 +417,15 @@ following modules first: (say YES if asked to install prerequisites) - install Bundle::CPAN - reload cpan - then you can install other modules: + - install Pod::Usage (this is a core module and should already be installed, + but we want to be sure it's been installed) + - install Getopt::Long (this a core module and should already be installed, + but we want to be sure it's been installed) - install DBI - force install DBD::mysql (must at least have mysqlclientlibs installed) - install Net::Telnet - install Time::HiRes - install Net::Server - - install Switch - install Mail::Sendmail - install Unicode::Map (needed for super list loader Excel) - install Jcode (needed for super list loader Excel) @@ -841,7 +842,6 @@ are running in it. - cd mtop-0.6.6 - cpan - install Curses - - install Getopt::Long - install Net::Domain - quit - perl Makefile.PL diff --git a/agc_2-X/trunk/www/agc/vicidial.php b/agc_2-X/trunk/www/agc/vicidial.php index 45c0ffa9..900edf7f 100644 --- a/agc_2-X/trunk/www/agc/vicidial.php +++ b/agc_2-X/trunk/www/agc/vicidial.php @@ -390,10 +390,11 @@ # 121114-1937 - Added INGROUP recording option # 121116-1407 - Added QC functionality # 121129-2149 - Corrected hotkeys activation conditions +# 121130-0734 - Fixed call notes amphersand issue #612 # -$version = '2.6-358c'; -$build = '121129-2149'; +$version = '2.6-359c'; +$build = '121130-0734'; $mel=1; # Mysql Error Log enabled = 1 $mysql_log_count=79; $one_mysql_log=0; @@ -9211,7 +9212,7 @@ function set_length(SLnumber,SLlength_goal,SLdirection) } if (xmlhttp) { - DSupdate_query = "server_ip=" + server_ip + "&session_name=" + session_name + "&ACTION=updateDISPO&format=text&user=" + user + "&pass=" + pass + "&dispo_choice=" + DispoChoice + "&lead_id=" + document.vicidial_form.lead_id.value + "&campaign=" + campaign + "&auto_dial_level=" + auto_dial_level + "&agent_log_id=" + agent_log_id + "&CallBackDatETimE=" + CallBackDatETimE + "&list_id=" + document.vicidial_form.list_id.value + "&recipient=" + CallBackrecipient + "&use_internal_dnc=" + use_internal_dnc + "&use_campaign_dnc=" + use_campaign_dnc + "&MDnextCID=" + LasTCID + "&stage=" + group + "&vtiger_callback_id=" + vtiger_callback_id + "&phone_number=" + document.vicidial_form.phone_number.value + "&phone_code=" + document.vicidial_form.phone_code.value + "&dial_method" + dial_method + "&uniqueid=" + document.vicidial_form.uniqueid.value + "&CallBackLeadStatus=" + CallBackLeadStatus + "&comments=" + CallBackCommenTs + "&custom_field_names=" + custom_field_names + "&call_notes=" + document.vicidial_form.call_notes_dispo.value + "&qm_dispo_code=" + DispoQMcsCODE; + DSupdate_query = "server_ip=" + server_ip + "&session_name=" + session_name + "&ACTION=updateDISPO&format=text&user=" + user + "&pass=" + pass + "&dispo_choice=" + DispoChoice + "&lead_id=" + document.vicidial_form.lead_id.value + "&campaign=" + campaign + "&auto_dial_level=" + auto_dial_level + "&agent_log_id=" + agent_log_id + "&CallBackDatETimE=" + CallBackDatETimE + "&list_id=" + document.vicidial_form.list_id.value + "&recipient=" + CallBackrecipient + "&use_internal_dnc=" + use_internal_dnc + "&use_campaign_dnc=" + use_campaign_dnc + "&MDnextCID=" + LasTCID + "&stage=" + group + "&vtiger_callback_id=" + vtiger_callback_id + "&phone_number=" + document.vicidial_form.phone_number.value + "&phone_code=" + document.vicidial_form.phone_code.value + "&dial_method" + dial_method + "&uniqueid=" + document.vicidial_form.uniqueid.value + "&CallBackLeadStatus=" + CallBackLeadStatus + "&comments=" + encodeURIComponent(CallBackCommenTs) + "&custom_field_names=" + custom_field_names + "&call_notes=" + encodeURIComponent(document.vicidial_form.call_notes_dispo.value) + "&qm_dispo_code=" + DispoQMcsCODE; xmlhttp.open('POST', 'vdc_db_query.php'); xmlhttp.setRequestHeader('Content-Type','application/x-www-form-urlencoded; charset=UTF-8'); xmlhttp.send(DSupdate_query);