Changeset 3404073
- Timestamp:
- 11/27/2025 12:24:51 PM (4 months ago)
- Location:
- pitchprint
- Files:
-
- 6 edited
- 1 copied
-
tags/11.1.2 (copied) (copied from pitchprint/trunk)
-
tags/11.1.2/functions/admin/settings.php (modified) (1 diff)
-
tags/11.1.2/pitchprint.php (modified) (2 diffs)
-
tags/11.1.2/readme.txt (modified) (2 diffs)
-
trunk/functions/admin/settings.php (modified) (1 diff)
-
trunk/pitchprint.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pitchprint/tags/11.1.2/functions/admin/settings.php
r3286188 r3404073 47 47 // Register settings with sanitization callbacks 48 48 register_setting('pitchprint', 'ppa_api_key', [ 49 'sanitize_callback' => 'sanitize_text_field' 49 'sanitize_callback' => function($value) { 50 return trim($value); 51 } 50 52 ]); 51 53 register_setting('pitchprint', 'ppa_secret_key', [ 52 'sanitize_callback' => 'sanitize_text_field' 54 'sanitize_callback' => function($value) { 55 return trim($value); 56 } 53 57 ]); 54 58 register_setting('pitchprint', 'ppa_cat_customize', [ -
pitchprint/tags/11.1.2/pitchprint.php
r3391719 r3404073 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.1. 18 * Version: 11.1.2 9 9 * Author URI: https://pitchprint.com 10 10 * Requires at least: 3.8 … … 47 47 * @var string 48 48 */ 49 public $version = '11.1. 1';49 public $version = '11.1.2'; 50 50 51 51 /** -
pitchprint/tags/11.1.2/readme.txt
r3391719 r3404073 4 4 Requires at least: 3.8 5 5 Tested up to: 6.8 6 Stable tag: 11.1. 16 Stable tag: 11.1.2 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.1.2 = 176 Minor fix to Refactor sanitization callbacks for API key and secret key to only trim whitespace 174 177 175 178 == 11.1.1 = -
pitchprint/trunk/functions/admin/settings.php
r3286188 r3404073 47 47 // Register settings with sanitization callbacks 48 48 register_setting('pitchprint', 'ppa_api_key', [ 49 'sanitize_callback' => 'sanitize_text_field' 49 'sanitize_callback' => function($value) { 50 return trim($value); 51 } 50 52 ]); 51 53 register_setting('pitchprint', 'ppa_secret_key', [ 52 'sanitize_callback' => 'sanitize_text_field' 54 'sanitize_callback' => function($value) { 55 return trim($value); 56 } 53 57 ]); 54 58 register_setting('pitchprint', 'ppa_cat_customize', [ -
pitchprint/trunk/pitchprint.php
r3391719 r3404073 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.1. 18 * Version: 11.1.2 9 9 * Author URI: https://pitchprint.com 10 10 * Requires at least: 3.8 … … 47 47 * @var string 48 48 */ 49 public $version = '11.1. 1';49 public $version = '11.1.2'; 50 50 51 51 /** -
pitchprint/trunk/readme.txt
r3391719 r3404073 4 4 Requires at least: 3.8 5 5 Tested up to: 6.8 6 Stable tag: 11.1. 16 Stable tag: 11.1.2 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.1.2 = 176 Minor fix to Refactor sanitization callbacks for API key and secret key to only trim whitespace 174 177 175 178 == 11.1.1 =
Note: See TracChangeset
for help on using the changeset viewer.