Changeset 3296178
- Timestamp:
- 05/19/2025 06:46:18 AM (9 months ago)
- Location:
- pitchprint
- Files:
-
- 6 edited
- 1 copied
-
tags/11.0.10 (copied) (copied from pitchprint/trunk)
-
tags/11.0.10/functions/general/customization.php (modified) (3 diffs)
-
tags/11.0.10/pitchprint.php (modified) (3 diffs)
-
tags/11.0.10/readme.txt (modified) (2 diffs)
-
trunk/functions/general/customization.php (modified) (3 diffs)
-
trunk/pitchprint.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pitchprint/tags/11.0.10/functions/general/customization.php
r3286188 r3296178 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 } -
pitchprint/tags/11.0.10/pitchprint.php
r3294021 r3296178 6 6 * Description: A beautiful web based print customization app for your online store. Integrates with WooCommerce. 7 7 * Author: PitchPrint, Inc. 8 * Version: 11.0. 98 * Version: 11.0.10 9 9 * Author URI: https://pitchprint.com 10 10 * Requires at least: 3.8 … … 12 12 * WC requires at least: 4.0 13 13 * WC tested up to: 9.4 14 * Requires PHP: 5.2.414 * Requires PHP: 7.4 15 15 16 16 * License: GPLv2 or later … … 47 47 * @var string 48 48 */ 49 public $version = '11.0. 9';49 public $version = '11.0.10'; 50 50 51 51 /** -
pitchprint/tags/11.0.10/readme.txt
r3294021 r3296178 4 4 Requires at least: 3.8 5 5 Tested up to: 6.8 6 Stable tag: 11.0. 96 Stable tag: 11.0.10 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 172 172 173 173 == Changelog == 174 175 == 11.0.10 = 176 Minor fix for warning when starting a session 174 177 175 178 == 11.0.9 = -
pitchprint/trunk/functions/general/customization.php
r3286188 r3296178 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 } -
pitchprint/trunk/pitchprint.php
r3294021 r3296178 6 6 * Description: A beautiful web based print customization app for your online store. Integrates with WooCommerce. 7 7 * Author: PitchPrint, Inc. 8 * Version: 11.0. 98 * Version: 11.0.10 9 9 * Author URI: https://pitchprint.com 10 10 * Requires at least: 3.8 … … 12 12 * WC requires at least: 4.0 13 13 * WC tested up to: 9.4 14 * Requires PHP: 5.2.414 * Requires PHP: 7.4 15 15 16 16 * License: GPLv2 or later … … 47 47 * @var string 48 48 */ 49 public $version = '11.0. 9';49 public $version = '11.0.10'; 50 50 51 51 /** -
pitchprint/trunk/readme.txt
r3294021 r3296178 4 4 Requires at least: 3.8 5 5 Tested up to: 6.8 6 Stable tag: 11.0. 96 Stable tag: 11.0.10 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 172 172 173 173 == Changelog == 174 175 == 11.0.10 = 176 Minor fix for warning when starting a session 174 177 175 178 == 11.0.9 =
Note: See TracChangeset
for help on using the changeset viewer.