Changeset 3296170
- Timestamp:
- 05/19/2025 06:24:06 AM (11 months ago)
- Location:
- printapp
- Files:
-
- 6 edited
- 1 copied
-
tags/2.1.5 (copied) (copied from printapp/trunk)
-
tags/2.1.5/functions/general/customization.php (modified) (3 diffs)
-
tags/2.1.5/printapp.php (modified) (2 diffs)
-
tags/2.1.5/readme.txt (modified) (2 diffs)
-
trunk/functions/general/customization.php (modified) (3 diffs)
-
trunk/printapp.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
printapp/tags/2.1.5/functions/general/customization.php
r3280203 r3296170 37 37 38 38 // Also save to session as a backup 39 if ( session_status() === PHP_SESSION_NONE) {39 if (!headers_sent() && session_status() === PHP_SESSION_NONE) { 40 40 session_start(); 41 41 } … … 61 61 62 62 // If transient failed or expired, try getting from session 63 if ( session_status() === PHP_SESSION_NONE) {63 if (!headers_sent() && session_status() === PHP_SESSION_NONE) { 64 64 session_start(); 65 65 } … … 84 84 85 85 // Delete from session 86 if ( session_status() === PHP_SESSION_NONE) {86 if (!headers_sent() && session_status() === PHP_SESSION_NONE) { 87 87 session_start(); 88 88 } -
printapp/tags/2.1.5/printapp.php
r3280214 r3296170 4 4 * Plugin URI: https://print.app 5 5 * Description: Empower your customers to personalize products like Business Cards, Photo Prints, T-Shirts, Mugs, Banners, Canvases, etc. on your store before purchase 6 * Version: 2.1. 46 * Version: 2.1.5 7 7 * Requires at least: 3.8 8 * Requires PHP: 5.2.48 * Requires PHP: 7.4 9 9 * Author: Print.App ApS 10 10 * Author URI: https://print.app 11 * Tested up to: 6. 711 * Tested up to: 6.8 12 12 * WC requires at least: 4.0 13 13 * WC tested up to: 9.4 … … 46 46 * @var string 47 47 */ 48 public $version = '2.1. 4';48 public $version = '2.1.5'; 49 49 50 50 /** -
printapp/tags/2.1.5/readme.txt
r3280214 r3296170 3 3 Tags: customizer, photo album, print shop, web2print, gift print, diy print, product customizer, web-to-print, print software, print solution, HTML5 WYSIWYG, t-shirt designer, wysiwyg print editor, business card 4 4 Requires at least: 3.8 5 Tested up to: 6. 76 Stable tag: 2.1. 45 Tested up to: 6.8 6 Stable tag: 2.1.5 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 102 102 == Changelog == 103 103 104 = 2.1.5 = 105 Minor fix for warning when starting a session 106 104 107 = 2.1.4 = 105 108 Captures User Data reporting to Projects when a new order is placed, even if the customer is logged in, because the order ID will need to be published -
printapp/trunk/functions/general/customization.php
r3280203 r3296170 37 37 38 38 // Also save to session as a backup 39 if ( session_status() === PHP_SESSION_NONE) {39 if (!headers_sent() && session_status() === PHP_SESSION_NONE) { 40 40 session_start(); 41 41 } … … 61 61 62 62 // If transient failed or expired, try getting from session 63 if ( session_status() === PHP_SESSION_NONE) {63 if (!headers_sent() && session_status() === PHP_SESSION_NONE) { 64 64 session_start(); 65 65 } … … 84 84 85 85 // Delete from session 86 if ( session_status() === PHP_SESSION_NONE) {86 if (!headers_sent() && session_status() === PHP_SESSION_NONE) { 87 87 session_start(); 88 88 } -
printapp/trunk/printapp.php
r3280214 r3296170 4 4 * Plugin URI: https://print.app 5 5 * Description: Empower your customers to personalize products like Business Cards, Photo Prints, T-Shirts, Mugs, Banners, Canvases, etc. on your store before purchase 6 * Version: 2.1. 46 * Version: 2.1.5 7 7 * Requires at least: 3.8 8 * Requires PHP: 5.2.48 * Requires PHP: 7.4 9 9 * Author: Print.App ApS 10 10 * Author URI: https://print.app 11 * Tested up to: 6. 711 * Tested up to: 6.8 12 12 * WC requires at least: 4.0 13 13 * WC tested up to: 9.4 … … 46 46 * @var string 47 47 */ 48 public $version = '2.1. 4';48 public $version = '2.1.5'; 49 49 50 50 /** -
printapp/trunk/readme.txt
r3280214 r3296170 3 3 Tags: customizer, photo album, print shop, web2print, gift print, diy print, product customizer, web-to-print, print software, print solution, HTML5 WYSIWYG, t-shirt designer, wysiwyg print editor, business card 4 4 Requires at least: 3.8 5 Tested up to: 6. 76 Stable tag: 2.1. 45 Tested up to: 6.8 6 Stable tag: 2.1.5 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 102 102 == Changelog == 103 103 104 = 2.1.5 = 105 Minor fix for warning when starting a session 106 104 107 = 2.1.4 = 105 108 Captures User Data reporting to Projects when a new order is placed, even if the customer is logged in, because the order ID will need to be published
Note: See TracChangeset
for help on using the changeset viewer.