Plugin Directory

Changeset 3296178


Ignore:
Timestamp:
05/19/2025 06:46:18 AM (9 months ago)
Author:
flexcubed
Message:

Update version to 11.0.10, add session handling checks, and update readme.txt

Location:
pitchprint
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • pitchprint/tags/11.0.10/functions/general/customization.php

    r3286188 r3296178  
    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        }
  • pitchprint/tags/11.0.10/pitchprint.php

    r3294021 r3296178  
    66*   Description:            A beautiful web based print customization app for your online store. Integrates with WooCommerce.
    77*   Author:                 PitchPrint, Inc.
    8 *   Version:                11.0.9
     8*   Version:                11.0.10
    99*   Author URI:             https://pitchprint.com
    1010*   Requires at least:      3.8
     
    1212*   WC requires at least:   4.0
    1313*   WC tested up to:        9.4
    14 *   Requires PHP:           5.2.4
     14*   Requires PHP:           7.4
    1515
    1616*   License:                GPLv2 or later
     
    4747             *  @var string
    4848            */
    49             public $version = '11.0.9';
     49            public $version = '11.0.10';
    5050
    5151            /**
  • pitchprint/tags/11.0.10/readme.txt

    r3294021 r3296178  
    44Requires at least: 3.8
    55Tested up to: 6.8
    6 Stable tag: 11.0.9
     6Stable tag: 11.0.10
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    172172
    173173== Changelog ==
     174
     175== 11.0.10 =
     176Minor fix for warning when starting a session
    174177
    175178== 11.0.9 =
  • pitchprint/trunk/functions/general/customization.php

    r3286188 r3296178  
    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        }
  • pitchprint/trunk/pitchprint.php

    r3294021 r3296178  
    66*   Description:            A beautiful web based print customization app for your online store. Integrates with WooCommerce.
    77*   Author:                 PitchPrint, Inc.
    8 *   Version:                11.0.9
     8*   Version:                11.0.10
    99*   Author URI:             https://pitchprint.com
    1010*   Requires at least:      3.8
     
    1212*   WC requires at least:   4.0
    1313*   WC tested up to:        9.4
    14 *   Requires PHP:           5.2.4
     14*   Requires PHP:           7.4
    1515
    1616*   License:                GPLv2 or later
     
    4747             *  @var string
    4848            */
    49             public $version = '11.0.9';
     49            public $version = '11.0.10';
    5050
    5151            /**
  • pitchprint/trunk/readme.txt

    r3294021 r3296178  
    44Requires at least: 3.8
    55Tested up to: 6.8
    6 Stable tag: 11.0.9
     6Stable tag: 11.0.10
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    172172
    173173== Changelog ==
     174
     175== 11.0.10 =
     176Minor fix for warning when starting a session
    174177
    175178== 11.0.9 =
Note: See TracChangeset for help on using the changeset viewer.