Plugin Directory

Changeset 1970669


Ignore:
Timestamp:
11/08/2018 02:49:25 AM (7 years ago)
Author:
Soben
Message:

Release of 4.1.1

Location:
gravityforms-hubspot
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • gravityforms-hubspot/branches/dev/readme.txt

    r1970668 r1970669  
    7070
    7171= 4.1.1 =
    72 * [FIX] Modification of strok, via adammichaelroach
     72* [FIX] Modification of strtok, via adammichaelroach
    7373
    7474= 4.1 =
  • gravityforms-hubspot/tags/4.1.1/readme.txt

    r1970668 r1970669  
    7070
    7171= 4.1.1 =
    72 * [FIX] Modification of strok, via adammichaelroach
     72* [FIX] Modification of strtok, via adammichaelroach
    7373
    7474= 4.1 =
  • gravityforms-hubspot/trunk

  • gravityforms-hubspot/trunk/gravityforms-hubspot.php

    r1931984 r1970669  
    44        Plugin URI: http://bigsea.co/
    55        Description: Easily integrate your Gravity Forms with HubSpot forms! Match up field-for-field so you can harness the power of HubSpot.
    6         Version: 4.1
     6        Version: 4.1.1
    77        Author: Big Sea
    88        Author URI: http://bigsea.co
     
    1212    define('GF_HUBSPOT_BASENAME', plugin_basename(__FILE__));
    1313    define('GF_HUBSPOT_PATH', WP_PLUGIN_DIR . "/" . basename(dirname(__FILE__)) . "/");
    14     define('GF_HUBSPOT_VERSION', '4.1');
     14    define('GF_HUBSPOT_VERSION', '4.1.1');
    1515    if ( !defined('GF_HUBSPOT_DEBUG') ) define('GF_HUBSPOT_DEBUG', false);
    1616
  • gravityforms-hubspot/trunk/readme.txt

    r1931978 r1970669  
    11=== HubSpot for Gravity Forms ===
    2 Contributors: Big Sea, Soben, bloqhead
     2Contributors: Big Sea, Soben
    33Donate link: http://bigsea.co/
    44Tags: hubspot, gravity, forms, submit, submission, lead, api, gravity forms
    55Requires at least: 3.5
    66Tested up to: 4.9.6
    7 Stable tag: 4.1
     7Stable tag: 4.1.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    6868
    6969== Changelog ==
     70
     71= 4.1.1 =
     72* [FIX] Modification of strtok, via adammichaelroach
    7073
    7174= 4.1 =
  • gravityforms-hubspot/trunk/src/Base.php

    r1931978 r1970669  
    207207            'hutk'      => $hubspotutk,
    208208            'ipAddress' => $ip_addr,
    209             'pageUrl'   => apply_filters( 'gf_hubspot_context_url', site_url(strtok($_SERVER['REQUEST_URI'])) ),
     209            'pageUrl'   => apply_filters( 'gf_hubspot_context_url', site_url(strtok($_SERVER['REQUEST_URI'], '?')) ),
    210210            'pageName'  => apply_filters( 'gf_hubspot_context_name', $this->getValue($form, 'title') ),
    211211        );
Note: See TracChangeset for help on using the changeset viewer.