Changeset 3433830
- Timestamp:
- 01/06/2026 05:39:44 PM (3 months ago)
- Location:
- fluent-cart
- Files:
-
- 6 edited
- 1 copied
-
tags/1.3.5 (copied) (copied from fluent-cart/trunk)
-
tags/1.3.5/app/Models/Cart.php (modified) (1 diff)
-
tags/1.3.5/fluent-cart.php (modified) (2 diffs)
-
tags/1.3.5/readme.txt (modified) (2 diffs)
-
trunk/app/Models/Cart.php (modified) (1 diff)
-
trunk/fluent-cart.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
fluent-cart/tags/1.3.5/app/Models/Cart.php
r3433678 r3433830 123 123 public function getCartDataAttribute($data): array 124 124 { 125 //add static cache using id126 static $cache = [];127 if (isset($cache[$this->id])) {128 return $cache[$this->id];129 }130 if (!$data) {131 return [];132 }133 125 $data = json_decode($data, true); 134 $cache[$this->id] = Helper::loadBundleChild($data, ['*']); 135 return $cache[$this->id]; 126 return Helper::loadBundleChild($data, ['*']); 136 127 } 137 128 -
fluent-cart/tags/1.3.5/fluent-cart.php
r3433678 r3433830 6 6 Plugin Name: FluentCart 7 7 Description: FluentCart WordPress Plugin 8 Version: 1.3. 48 Version: 1.3.5 9 9 Author: FluentCart Team 10 10 Author URI: https://fluentcart.com/about-us … … 16 16 17 17 if (!defined('FLUENTCART_PLUGIN_PATH')) { 18 define('FLUENTCART_VERSION', '1.3. 4');18 define('FLUENTCART_VERSION', '1.3.5'); 19 19 define('FLUENTCART_DB_VERSION', '1.0.32'); 20 20 define('FLUENTCART_PLUGIN_PATH', plugin_dir_path(__FILE__)); -
fluent-cart/tags/1.3.5/readme.txt
r3433678 r3433830 5 5 Tested up to: 6.9 6 6 Requires PHP: 7.4 7 Stable tag: 1.3. 47 Stable tag: 1.3.5 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 309 309 310 310 == Changelog == 311 312 = 1.3.5 (Jan 06, 2026) = 313 - hotfix: Cart Model caching issue fixed 311 314 312 315 = 1.3.4 (Jan 06, 2026) = -
fluent-cart/trunk/app/Models/Cart.php
r3433678 r3433830 123 123 public function getCartDataAttribute($data): array 124 124 { 125 //add static cache using id126 static $cache = [];127 if (isset($cache[$this->id])) {128 return $cache[$this->id];129 }130 if (!$data) {131 return [];132 }133 125 $data = json_decode($data, true); 134 $cache[$this->id] = Helper::loadBundleChild($data, ['*']); 135 return $cache[$this->id]; 126 return Helper::loadBundleChild($data, ['*']); 136 127 } 137 128 -
fluent-cart/trunk/fluent-cart.php
r3433678 r3433830 6 6 Plugin Name: FluentCart 7 7 Description: FluentCart WordPress Plugin 8 Version: 1.3. 48 Version: 1.3.5 9 9 Author: FluentCart Team 10 10 Author URI: https://fluentcart.com/about-us … … 16 16 17 17 if (!defined('FLUENTCART_PLUGIN_PATH')) { 18 define('FLUENTCART_VERSION', '1.3. 4');18 define('FLUENTCART_VERSION', '1.3.5'); 19 19 define('FLUENTCART_DB_VERSION', '1.0.32'); 20 20 define('FLUENTCART_PLUGIN_PATH', plugin_dir_path(__FILE__)); -
fluent-cart/trunk/readme.txt
r3433678 r3433830 5 5 Tested up to: 6.9 6 6 Requires PHP: 7.4 7 Stable tag: 1.3. 47 Stable tag: 1.3.5 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 309 309 310 310 == Changelog == 311 312 = 1.3.5 (Jan 06, 2026) = 313 - hotfix: Cart Model caching issue fixed 311 314 312 315 = 1.3.4 (Jan 06, 2026) =
Note: See TracChangeset
for help on using the changeset viewer.