Fixed call notes amphersand issue #612, reported by abostick
git-svn-id: svn://192.168.202.10@1893 3d104415-ff17-0410-8863-d5cf3c621b8a
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user