Plugin Directory

Changeset 3296170


Ignore:
Timestamp:
05/19/2025 06:24:06 AM (11 months ago)
Author:
printapp
Message:

v2.1.5

Location:
printapp
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • printapp/tags/2.1.5/functions/general/customization.php

    r3280203 r3296170  
    3737
    3838        // Also save to session as a backup
    39         if (session_status() === PHP_SESSION_NONE) {
     39        if (!headers_sent() && session_status() === PHP_SESSION_NONE) {
    4040            session_start();
    4141        }
     
    6161
    6262        // 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) {
    6464            session_start();
    6565        }
     
    8484
    8585        // Delete from session
    86         if (session_status() === PHP_SESSION_NONE) {
     86        if (!headers_sent() && session_status() === PHP_SESSION_NONE) {
    8787            session_start();
    8888        }
  • printapp/tags/2.1.5/printapp.php

    r3280214 r3296170  
    44 *  Plugin URI:         https://print.app
    55 *  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.4
     6 *  Version:            2.1.5
    77 *  Requires at least:  3.8
    8  *  Requires PHP:       5.2.4
     8 *  Requires PHP:       7.4
    99 *  Author:             Print.App ApS
    1010 *  Author URI:         https://print.app
    11  *  Tested up to:       6.7
     11 *  Tested up to:       6.8
    1212 *  WC requires at least:   4.0
    1313 *  WC tested up to:        9.4
     
    4646             *  @var string
    4747            */
    48             public $version = '2.1.4';
     48            public $version = '2.1.5';
    4949
    5050            /**
  • printapp/tags/2.1.5/readme.txt

    r3280214 r3296170  
    33Tags: 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
    44Requires at least: 3.8
    5 Tested up to: 6.7
    6 Stable tag: 2.1.4
     5Tested up to: 6.8
     6Stable tag: 2.1.5
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    102102== Changelog ==
    103103
     104= 2.1.5 =
     105Minor fix for warning when starting a session
     106
    104107= 2.1.4 =
    105108Captures 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  
    3737
    3838        // Also save to session as a backup
    39         if (session_status() === PHP_SESSION_NONE) {
     39        if (!headers_sent() && session_status() === PHP_SESSION_NONE) {
    4040            session_start();
    4141        }
     
    6161
    6262        // 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) {
    6464            session_start();
    6565        }
     
    8484
    8585        // Delete from session
    86         if (session_status() === PHP_SESSION_NONE) {
     86        if (!headers_sent() && session_status() === PHP_SESSION_NONE) {
    8787            session_start();
    8888        }
  • printapp/trunk/printapp.php

    r3280214 r3296170  
    44 *  Plugin URI:         https://print.app
    55 *  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.4
     6 *  Version:            2.1.5
    77 *  Requires at least:  3.8
    8  *  Requires PHP:       5.2.4
     8 *  Requires PHP:       7.4
    99 *  Author:             Print.App ApS
    1010 *  Author URI:         https://print.app
    11  *  Tested up to:       6.7
     11 *  Tested up to:       6.8
    1212 *  WC requires at least:   4.0
    1313 *  WC tested up to:        9.4
     
    4646             *  @var string
    4747            */
    48             public $version = '2.1.4';
     48            public $version = '2.1.5';
    4949
    5050            /**
  • printapp/trunk/readme.txt

    r3280214 r3296170  
    33Tags: 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
    44Requires at least: 3.8
    5 Tested up to: 6.7
    6 Stable tag: 2.1.4
     5Tested up to: 6.8
     6Stable tag: 2.1.5
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    102102== Changelog ==
    103103
     104= 2.1.5 =
     105Minor fix for warning when starting a session
     106
    104107= 2.1.4 =
    105108Captures 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.