Plugin Directory

Changeset 2976475


Ignore:
Timestamp:
10/09/2023 03:22:04 PM (2 years ago)
Author:
outfunnel
Message:

Update to version 2.9.2 from GitHub

Location:
outfunnel
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • outfunnel/tags/2.9.2/commit.txt

    r2961141 r2976475  
    1 6f35c4298e8e9d10c65c9aaa77cf69f27bee14cd
     15db35c3f5a9d7e77279948239027bd6ab752580c
  • outfunnel/tags/2.9.2/languages/outfunnel.pot

    r2961141 r2976475  
    77msgid ""
    88msgstr ""
    9 "Project-Id-Version: outfunnel 2.9.1\n"
     9"Project-Id-Version: outfunnel 2.9.2\n"
    1010"Report-Msgid-Bugs-To: devel@outfunnel.com\n"
    11 "POT-Creation-Date: 2023-08-31 11:54+0000\n"
     11"POT-Creation-Date: 2023-10-09 15:21+0000\n"
    1212"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1313"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1818"Content-Transfer-Encoding: 8bit\n"
    1919
    20 #: outfunnel.php:104 outfunnel.php:353
     20#: outfunnel.php:104 outfunnel.php:367
    2121msgid "Something went wrong"
    2222msgstr ""
     
    6161msgstr ""
    6262
    63 #: outfunnel.php:386
     63#: outfunnel.php:400
    6464#, php-format
    6565msgid ""
     
    6969msgstr ""
    7070
    71 #: outfunnel.php:394
     71#: outfunnel.php:408
    7272msgid "Enter your Outfunnel Tracking ID for this website"
    7373msgstr ""
    7474
    75 #: outfunnel.php:402
     75#: outfunnel.php:416
    7676#, php-format
    7777msgid ""
     
    8181msgstr ""
    8282
    83 #: outfunnel.php:414
     83#: outfunnel.php:428
    8484msgid "Enter your Outfunnel account email"
    8585msgstr ""
    8686
    87 #: outfunnel.php:430
     87#: outfunnel.php:444
    8888msgid "Enter your Outfunnel API key"
    8989msgstr ""
  • outfunnel/tags/2.9.2/outfunnel.php

    r2961141 r2976475  
    22/*
    33Plugin Name: Outfunnel: Web Visitor Tracking & CRM Integration
    4 Version: 2.9.1
     4Version: 2.9.2
    55Author: Outfunnel
    66Author URI: https://outfunnel.com/
     
    2828    class OUTFUNNEL {
    2929
    30         public $plugin_version = '2.9.1';
     30        public $plugin_version = '2.9.2';
    3131
    3232        /**
     
    349349                ]);
    350350
     351                if (is_wp_error($response)) {
     352                    $type = 'error';
     353                    $message = json_decode($response->get_error_message());
     354
     355                    add_settings_error(
     356                        'outfunnel_settings',
     357                        esc_attr('settings_updated'),
     358                        $message,
     359                        $type
     360                    );
     361
     362                    return $data;
     363                }
     364
    351365                if (!in_array($response['response']['code'], [200, 201], true)) {
    352366                    $type = 'error';
  • outfunnel/tags/2.9.2/readme.txt

    r2961141 r2976475  
    44Requires at least: 4.2
    55Tested up to: 6.3.1
    6 Stable tag: 2.9.1
     6Stable tag: 2.9.2
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • outfunnel/trunk/commit.txt

    r2961141 r2976475  
    1 6f35c4298e8e9d10c65c9aaa77cf69f27bee14cd
     15db35c3f5a9d7e77279948239027bd6ab752580c
  • outfunnel/trunk/languages/outfunnel.pot

    r2961141 r2976475  
    77msgid ""
    88msgstr ""
    9 "Project-Id-Version: outfunnel 2.9.1\n"
     9"Project-Id-Version: outfunnel 2.9.2\n"
    1010"Report-Msgid-Bugs-To: devel@outfunnel.com\n"
    11 "POT-Creation-Date: 2023-08-31 11:54+0000\n"
     11"POT-Creation-Date: 2023-10-09 15:21+0000\n"
    1212"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1313"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1818"Content-Transfer-Encoding: 8bit\n"
    1919
    20 #: outfunnel.php:104 outfunnel.php:353
     20#: outfunnel.php:104 outfunnel.php:367
    2121msgid "Something went wrong"
    2222msgstr ""
     
    6161msgstr ""
    6262
    63 #: outfunnel.php:386
     63#: outfunnel.php:400
    6464#, php-format
    6565msgid ""
     
    6969msgstr ""
    7070
    71 #: outfunnel.php:394
     71#: outfunnel.php:408
    7272msgid "Enter your Outfunnel Tracking ID for this website"
    7373msgstr ""
    7474
    75 #: outfunnel.php:402
     75#: outfunnel.php:416
    7676#, php-format
    7777msgid ""
     
    8181msgstr ""
    8282
    83 #: outfunnel.php:414
     83#: outfunnel.php:428
    8484msgid "Enter your Outfunnel account email"
    8585msgstr ""
    8686
    87 #: outfunnel.php:430
     87#: outfunnel.php:444
    8888msgid "Enter your Outfunnel API key"
    8989msgstr ""
  • outfunnel/trunk/outfunnel.php

    r2961141 r2976475  
    22/*
    33Plugin Name: Outfunnel: Web Visitor Tracking & CRM Integration
    4 Version: 2.9.1
     4Version: 2.9.2
    55Author: Outfunnel
    66Author URI: https://outfunnel.com/
     
    2828    class OUTFUNNEL {
    2929
    30         public $plugin_version = '2.9.1';
     30        public $plugin_version = '2.9.2';
    3131
    3232        /**
     
    349349                ]);
    350350
     351                if (is_wp_error($response)) {
     352                    $type = 'error';
     353                    $message = json_decode($response->get_error_message());
     354
     355                    add_settings_error(
     356                        'outfunnel_settings',
     357                        esc_attr('settings_updated'),
     358                        $message,
     359                        $type
     360                    );
     361
     362                    return $data;
     363                }
     364
    351365                if (!in_array($response['response']['code'], [200, 201], true)) {
    352366                    $type = 'error';
  • outfunnel/trunk/readme.txt

    r2961141 r2976475  
    44Requires at least: 4.2
    55Tested up to: 6.3.1
    6 Stable tag: 2.9.1
     6Stable tag: 2.9.2
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset for help on using the changeset viewer.