Changeset 2885570
- Timestamp:
- 03/23/2023 10:55:57 AM (3 years ago)
- Location:
- outfunnel
- Files:
-
- 8 edited
- 1 copied
-
tags/2.7.4 (copied) (copied from outfunnel/trunk)
-
tags/2.7.4/commit.txt (modified) (1 diff)
-
tags/2.7.4/languages/outfunnel.pot (modified) (1 diff)
-
tags/2.7.4/outfunnel.php (modified) (3 diffs)
-
tags/2.7.4/readme.txt (modified) (1 diff)
-
trunk/commit.txt (modified) (1 diff)
-
trunk/languages/outfunnel.pot (modified) (1 diff)
-
trunk/outfunnel.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
outfunnel/tags/2.7.4/commit.txt
r2884344 r2885570 1 cb0f000475ab79483fca25f028b4761af61c00d1 1 ae8f59ed2a69449d40ee80c1d0b7279d2e23ed42 -
outfunnel/tags/2.7.4/languages/outfunnel.pot
r2884344 r2885570 7 7 msgid "" 8 8 msgstr "" 9 "Project-Id-Version: outfunnel 2.7. 3\n"9 "Project-Id-Version: outfunnel 2.7.4\n" 10 10 "Report-Msgid-Bugs-To: devel@outfunnel.com\n" 11 "POT-Creation-Date: 2023-03-2 1 14:22+0000\n"11 "POT-Creation-Date: 2023-03-23 10:55+0000\n" 12 12 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 13 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -
outfunnel/tags/2.7.4/outfunnel.php
r2884344 r2885570 2 2 /* 3 3 Plugin Name: Outfunnel: Web Visitor Tracking & CRM Integration 4 Version: 2.7. 34 Version: 2.7.4 5 5 Author: andrisreinman 6 6 Author URI: https://outfunnel.com/ … … 28 28 class OUTFUNNEL { 29 29 30 public $plugin_version = '2.7. 3';30 public $plugin_version = '2.7.4'; 31 31 32 32 /** … … 478 478 $outfunnel_settings = get_option('outfunnel_settings'); 479 479 $of_id = $outfunnel_settings['of_id']; 480 $of_subdomain_tracking = $outfunnel_settings['of_subdomain_tracking'];480 $of_subdomain_tracking = isset($outfunnel_settings['of_subdomain_tracking']) ? $outfunnel_settings['of_subdomain_tracking'] : null; 481 481 482 482 if (!empty($of_id)) { -
outfunnel/tags/2.7.4/readme.txt
r2884344 r2885570 4 4 Requires at least: 4.2 5 5 Tested up to: 6.1.1 6 Stable tag: 2.7. 36 Stable tag: 2.7.4 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
outfunnel/trunk/commit.txt
r2884344 r2885570 1 cb0f000475ab79483fca25f028b4761af61c00d1 1 ae8f59ed2a69449d40ee80c1d0b7279d2e23ed42 -
outfunnel/trunk/languages/outfunnel.pot
r2884344 r2885570 7 7 msgid "" 8 8 msgstr "" 9 "Project-Id-Version: outfunnel 2.7. 3\n"9 "Project-Id-Version: outfunnel 2.7.4\n" 10 10 "Report-Msgid-Bugs-To: devel@outfunnel.com\n" 11 "POT-Creation-Date: 2023-03-2 1 14:22+0000\n"11 "POT-Creation-Date: 2023-03-23 10:55+0000\n" 12 12 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 13 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -
outfunnel/trunk/outfunnel.php
r2884344 r2885570 2 2 /* 3 3 Plugin Name: Outfunnel: Web Visitor Tracking & CRM Integration 4 Version: 2.7. 34 Version: 2.7.4 5 5 Author: andrisreinman 6 6 Author URI: https://outfunnel.com/ … … 28 28 class OUTFUNNEL { 29 29 30 public $plugin_version = '2.7. 3';30 public $plugin_version = '2.7.4'; 31 31 32 32 /** … … 478 478 $outfunnel_settings = get_option('outfunnel_settings'); 479 479 $of_id = $outfunnel_settings['of_id']; 480 $of_subdomain_tracking = $outfunnel_settings['of_subdomain_tracking'];480 $of_subdomain_tracking = isset($outfunnel_settings['of_subdomain_tracking']) ? $outfunnel_settings['of_subdomain_tracking'] : null; 481 481 482 482 if (!empty($of_id)) { -
outfunnel/trunk/readme.txt
r2884344 r2885570 4 4 Requires at least: 4.2 5 5 Tested up to: 6.1.1 6 Stable tag: 2.7. 36 Stable tag: 2.7.4 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset
for help on using the changeset viewer.