Changeset 3418378
- Timestamp:
- 12/12/2025 03:09:11 PM (36 hours ago)
- Location:
- options-for-twenty-seventeen
- Files:
-
- 1 deleted
- 3 edited
- 4 copied
-
tags/2.5.6 (copied) (copied from options-for-twenty-seventeen/trunk)
-
tags/2.5.6/css (deleted)
-
tags/2.5.6/includes/class-ofts-common.php (copied) (copied from options-for-twenty-seventeen/trunk/includes/class-ofts-common.php) (2 diffs)
-
tags/2.5.6/options-for-twenty-seventeen.php (copied) (copied from options-for-twenty-seventeen/trunk/options-for-twenty-seventeen.php) (2 diffs)
-
tags/2.5.6/readme.txt (copied) (copied from options-for-twenty-seventeen/trunk/readme.txt) (3 diffs)
-
trunk/includes/class-ofts-common.php (modified) (2 diffs)
-
trunk/options-for-twenty-seventeen.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
options-for-twenty-seventeen/tags/2.5.6/includes/class-ofts-common.php
r3417427 r3418378 1 1 <?php 2 2 /* 3 * Version: 1.4. 13 * Version: 1.4.2 4 4 */ 5 5 … … 238 238 239 239 $generated_css = sprintf('%s { %s: %s; }', $selector, $style, $prefix.$mod.$postfix); 240 echo wp_kses($generated_css, 'strip'); 240 241 // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped 242 echo wp_strip_all_tags($generated_css); 241 243 242 244 } elseif ($mod) { 243 245 244 246 $generated_css = sprintf('%s { %s:%s; }', $selector, $style, $prefix.$value.$postfix); 245 echo wp_kses($generated_css, 'strip'); 247 248 // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped 249 echo wp_strip_all_tags($generated_css); 246 250 247 251 } -
options-for-twenty-seventeen/tags/2.5.6/options-for-twenty-seventeen.php
r3417427 r3418378 2 2 /* 3 3 * Plugin Name: Options for Twenty Seventeen 4 * Version: 2.5. 54 * Version: 2.5.6 5 5 * Plugin URI: https://webd.uk/product/options-for-twenty-seventeen-upgrade/ 6 6 * Description: Adds powerful customizer options to modify all aspects of the default WordPress theme Twenty Seventeen … … 24 24 class options_for_twenty_seventeen_class { 25 25 26 public static $version = '2.5. 5';26 public static $version = '2.5.6'; 27 27 28 28 function __construct() { -
options-for-twenty-seventeen/tags/2.5.6/readme.txt
r3417427 r3418378 6 6 Tested up to: 6.9 7 7 Requires PHP: 5.6 8 Stable tag: 2.5. 58 Stable tag: 2.5.6 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 181 181 == Changelog == 182 182 183 = 2.5.6 = 184 * Fixed a bug with CSS output 185 183 186 = 2.5.5 = 184 187 * General housekeeping preparing for "Plugin Check" code review … … 721 724 == Upgrade Notice == 722 725 723 = 2.5. 5=724 * General housekeeping preparing for "Plugin Check" code review726 = 2.5.6 = 727 * Fixed a bug with CSS output -
options-for-twenty-seventeen/trunk/includes/class-ofts-common.php
r3417427 r3418378 1 1 <?php 2 2 /* 3 * Version: 1.4. 13 * Version: 1.4.2 4 4 */ 5 5 … … 238 238 239 239 $generated_css = sprintf('%s { %s: %s; }', $selector, $style, $prefix.$mod.$postfix); 240 echo wp_kses($generated_css, 'strip'); 240 241 // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped 242 echo wp_strip_all_tags($generated_css); 241 243 242 244 } elseif ($mod) { 243 245 244 246 $generated_css = sprintf('%s { %s:%s; }', $selector, $style, $prefix.$value.$postfix); 245 echo wp_kses($generated_css, 'strip'); 247 248 // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped 249 echo wp_strip_all_tags($generated_css); 246 250 247 251 } -
options-for-twenty-seventeen/trunk/options-for-twenty-seventeen.php
r3417427 r3418378 2 2 /* 3 3 * Plugin Name: Options for Twenty Seventeen 4 * Version: 2.5. 54 * Version: 2.5.6 5 5 * Plugin URI: https://webd.uk/product/options-for-twenty-seventeen-upgrade/ 6 6 * Description: Adds powerful customizer options to modify all aspects of the default WordPress theme Twenty Seventeen … … 24 24 class options_for_twenty_seventeen_class { 25 25 26 public static $version = '2.5. 5';26 public static $version = '2.5.6'; 27 27 28 28 function __construct() { -
options-for-twenty-seventeen/trunk/readme.txt
r3417427 r3418378 6 6 Tested up to: 6.9 7 7 Requires PHP: 5.6 8 Stable tag: 2.5. 58 Stable tag: 2.5.6 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 181 181 == Changelog == 182 182 183 = 2.5.6 = 184 * Fixed a bug with CSS output 185 183 186 = 2.5.5 = 184 187 * General housekeeping preparing for "Plugin Check" code review … … 721 724 == Upgrade Notice == 722 725 723 = 2.5. 5=724 * General housekeeping preparing for "Plugin Check" code review726 = 2.5.6 = 727 * Fixed a bug with CSS output
Note: See TracChangeset
for help on using the changeset viewer.