Changeset 3464591
- Timestamp:
- 02/18/2026 06:22:53 PM (6 weeks ago)
- Location:
- ignitiondeck/trunk
- Files:
-
- 3 edited
-
idf-functions.php (modified) (2 diffs)
-
idf.php (modified) (5 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ignitiondeck/trunk/idf-functions.php
r3238953 r3464591 1058 1058 } 1059 1059 update_option('idf_license_name', $license_name); 1060 set_transient('idf_license_name', $license_name); 1061 1060 1061 // Set transients with 30-day expiration to ensure they're written to database 1062 // This prevents license unseating when Object Cache Pro (Redis) flushes cache 1063 // Transients without expiration are stored ONLY in Redis and lost on flush 1064 $transient_expiration = 30 * DAY_IN_SECONDS; 1065 set_transient('idf_license_name', $license_name, $transient_expiration); 1062 1066 1063 1067 // Update all options and transients … … 1065 1069 update_option('is_idc_licensed', $is_idc_licensed); 1066 1070 update_option('is_id_basic', $is_basic); 1067 set_transient('is_id_pro', $is_pro );1068 set_transient('is_idc_licensed', $is_idc_licensed );1069 set_transient('is_id_basic', $is_basic );1071 set_transient('is_id_pro', $is_pro, $transient_expiration); 1072 set_transient('is_idc_licensed', $is_idc_licensed, $transient_expiration); 1073 set_transient('is_id_basic', $is_basic, $transient_expiration); 1070 1074 1071 1075 // Store the exact license type for reference -
ignitiondeck/trunk/idf.php
r3453982 r3464591 4 4 URI: https://IgnitionDeck.com 5 5 Description: A crowdfunding and ecommerce plugin for WordPress that helps you crowdfund, pre-order, and sell goods online. 6 Version: 2.0.1 46 Version: 2.0.15 7 7 Author: IgnitionDeck 8 8 Author URI: https://IgnitionDeck.com … … 14 14 require_once 'idf-globals.php'; 15 15 global $active_plugins, $idf_current_version; 16 $idf_current_version = '2.0.1 4';16 $idf_current_version = '2.0.15'; 17 17 require_once 'idf-update.php'; 18 18 require_once 'classes/class-idf_requirements.php'; … … 84 84 } 85 85 $version_array = array( 86 'ignitiondeck-crowdfunding/ignitiondeck.php' => '3.0. 5',87 'idcommerce/idcommerce.php' => '2.3. 2',86 'ignitiondeck-crowdfunding/ignitiondeck.php' => '3.0.6', 87 'idcommerce/idcommerce.php' => '2.3.3', 88 88 ); 89 89 set_transient( 'idf_plugin_versions', $version_array ); … … 374 374 'source' => 'https://files.ignitiondeck.com/idc_latest.zip', 375 375 'required' => true, 376 'version' => '2.3. 2',376 'version' => '2.3.3', 377 377 'force_activation' => false, 378 378 'force_deactivation' => false, … … 386 386 'source' => 'https://files.ignitiondeck.com/idcf_latest.zip', 387 387 'required' => true, 388 'version' => '3.0. 5',388 'version' => '3.0.6', 389 389 'force_activation' => false, 390 390 'force_deactivation' => false, -
ignitiondeck/trunk/readme.txt
r3453982 r3464591 5 5 Requires at least: 4.9 6 6 Tested up to: 6.9 7 Stable tag: 2.0.1 47 Stable tag: 2.0.15 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 147 147 == Changelog == 148 148 149 = 2.0.15 = 150 151 * Fix for Object Cache Pro / Redis specific bug with GoDaddy hosting 152 * Updated minimum required version numbers for dependencies 153 149 154 = 2.0.14 = 150 155
Note: See TracChangeset
for help on using the changeset viewer.