Plugin Directory

Changeset 701864


Ignore:
Timestamp:
04/22/2013 11:27:13 PM (13 years ago)
Author:
e_durose
Message:

updated html encoding function call

File:
1 edited

Legend:

Unmodified
Added
Removed
  • dnd-gravity-forms-to-office-autopilot-contact-builder/trunk/gravity-to-officeAP.php

    r700552 r701864  
    635635</search>';
    636636
    637 $data = urlencode(urlencode($data));
     637$data = urlencode($data);
    638638
    639639$options = get_option('gvty_oap_options');
     
    680680function update_oap_contact ($cID, $xml_data){
    681681
    682 $post_data =  urlencode(urlencode($xml_data));
     682$post_data =  urlencode($xml_data);
    683683
    684684$options = get_option('gvty_oap_options');
     
    705705function add_new_oap_contact($xml_data){
    706706
    707 $post_data =  urlencode(urlencode($xml_data));
     707$post_data =  urlencode($xml_data);
    708708
    709709$options = get_option('gvty_oap_options');
Note: See TracChangeset for help on using the changeset viewer.