Plugin Directory

Changeset 3220565


Ignore:
Timestamp:
01/11/2025 05:02:31 AM (3 months ago)
Author:
fathomconversions
Message:

Update to version 1.1.3.1 from GitHub

Location:
fathom-analytics-conversions
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • fathom-analytics-conversions/tags/1.1.3.1/README.txt

    r3220274 r3220565  
    55Requires at least: 5.9
    66Tested up to: 6.7.1
    7 Stable tag: 1.1.3
     7Stable tag: 1.1.3.1
    88Requires PHP: 7.4
    99License: GPLv2 or later
     
    143143== Changelog ==
    144144
     145= 1.1.3.1 =
     146* Fixed PHP Notice: load_plugin_textdomain running too soon. FIXES:https://wordpress.org/support/topic/load_textdomain-running-too-soon/
     147
    145148= 1.1.3 =
    146149* Fixed Gravity forms no conversions. FIXES:https://wordpress.org/support/topic/gravity-forms-no-conversions/
  • fathom-analytics-conversions/tags/1.1.3.1/fathom-analytics-conversions.php

    r3220274 r3220565  
    1717 * Plugin URI:        https://www.fathomconversions.com
    1818 * Description:       Easily add event conversions in WordPress plugins to Fathom Analytics
    19  * Version:           1.1.3
     19 * Version:           1.1.3.1
    2020 * Author:            SixFive Pty Ltd
    2121 * Author URI:        https://www.sixfive.io
     
    3636 * Rename this for your plugin and update it as you release new versions.
    3737 */
    38 define( 'FATHOM_ANALYTICS_CONVERSIONS_VERSION', '1.1.3' );
     38define( 'FATHOM_ANALYTICS_CONVERSIONS_VERSION', '1.1.3.1' );
    3939define( 'FAC4WP_PATH', plugin_dir_path( __FILE__ ) );
    4040
  • fathom-analytics-conversions/tags/1.1.3.1/includes/class-fathom-analytics-conversions.php

    r3210185 r3220565  
    88 *
    99 * @link       https://www.fathomconversions.com
    10  * @since      1.0
     10 * @since      1.1.3.1
    1111 *
    1212 * @package    Fathom_Analytics_Conversions
     
    209209        $plugin_i18n = new Fathom_Analytics_Conversions_i18n();
    210210
    211         $this->loader->add_action( 'plugins_loaded', $plugin_i18n, 'load_plugin_textdomain' );
     211        $this->loader->add_action( 'init', $plugin_i18n, 'load_plugin_textdomain' );
    212212
    213213    }
  • fathom-analytics-conversions/trunk/README.txt

    r3220274 r3220565  
    55Requires at least: 5.9
    66Tested up to: 6.7.1
    7 Stable tag: 1.1.3
     7Stable tag: 1.1.3.1
    88Requires PHP: 7.4
    99License: GPLv2 or later
     
    143143== Changelog ==
    144144
     145= 1.1.3.1 =
     146* Fixed PHP Notice: load_plugin_textdomain running too soon. FIXES:https://wordpress.org/support/topic/load_textdomain-running-too-soon/
     147
    145148= 1.1.3 =
    146149* Fixed Gravity forms no conversions. FIXES:https://wordpress.org/support/topic/gravity-forms-no-conversions/
  • fathom-analytics-conversions/trunk/fathom-analytics-conversions.php

    r3220274 r3220565  
    1717 * Plugin URI:        https://www.fathomconversions.com
    1818 * Description:       Easily add event conversions in WordPress plugins to Fathom Analytics
    19  * Version:           1.1.3
     19 * Version:           1.1.3.1
    2020 * Author:            SixFive Pty Ltd
    2121 * Author URI:        https://www.sixfive.io
     
    3636 * Rename this for your plugin and update it as you release new versions.
    3737 */
    38 define( 'FATHOM_ANALYTICS_CONVERSIONS_VERSION', '1.1.3' );
     38define( 'FATHOM_ANALYTICS_CONVERSIONS_VERSION', '1.1.3.1' );
    3939define( 'FAC4WP_PATH', plugin_dir_path( __FILE__ ) );
    4040
  • fathom-analytics-conversions/trunk/includes/class-fathom-analytics-conversions.php

    r3210185 r3220565  
    88 *
    99 * @link       https://www.fathomconversions.com
    10  * @since      1.0
     10 * @since      1.1.3.1
    1111 *
    1212 * @package    Fathom_Analytics_Conversions
     
    209209        $plugin_i18n = new Fathom_Analytics_Conversions_i18n();
    210210
    211         $this->loader->add_action( 'plugins_loaded', $plugin_i18n, 'load_plugin_textdomain' );
     211        $this->loader->add_action( 'init', $plugin_i18n, 'load_plugin_textdomain' );
    212212
    213213    }
Note: See TracChangeset for help on using the changeset viewer.