Plugin Directory

Changeset 3418378


Ignore:
Timestamp:
12/12/2025 03:09:11 PM (36 hours ago)
Author:
domainsupport
Message:

Tagging version 2.5.6

Location:
options-for-twenty-seventeen
Files:
1 deleted
3 edited
4 copied

Legend:

Unmodified
Added
Removed
  • options-for-twenty-seventeen/tags/2.5.6/includes/class-ofts-common.php

    r3417427 r3418378  
    11<?php
    22/*
    3  * Version: 1.4.1
     3 * Version: 1.4.2
    44 */
    55
     
    238238
    239239                $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);
    241243
    242244            } elseif ($mod) {
    243245
    244246                $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);
    246250
    247251            }
  • options-for-twenty-seventeen/tags/2.5.6/options-for-twenty-seventeen.php

    r3417427 r3418378  
    22/*
    33 * Plugin Name: Options for Twenty Seventeen
    4  * Version: 2.5.5
     4 * Version: 2.5.6
    55 * Plugin URI: https://webd.uk/product/options-for-twenty-seventeen-upgrade/
    66 * Description: Adds powerful customizer options to modify all aspects of the default WordPress theme Twenty Seventeen
     
    2424    class options_for_twenty_seventeen_class {
    2525
    26         public static $version = '2.5.5';
     26        public static $version = '2.5.6';
    2727
    2828        function __construct() {
  • options-for-twenty-seventeen/tags/2.5.6/readme.txt

    r3417427 r3418378  
    66Tested up to: 6.9
    77Requires PHP: 5.6
    8 Stable tag: 2.5.5
     8Stable tag: 2.5.6
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    181181== Changelog ==
    182182
     183= 2.5.6 =
     184* Fixed a bug with CSS output
     185
    183186= 2.5.5 =
    184187* General housekeeping preparing for "Plugin Check" code review
     
    721724== Upgrade Notice ==
    722725
    723 = 2.5.5 =
    724 * General housekeeping preparing for "Plugin Check" code review
     726= 2.5.6 =
     727* Fixed a bug with CSS output
  • options-for-twenty-seventeen/trunk/includes/class-ofts-common.php

    r3417427 r3418378  
    11<?php
    22/*
    3  * Version: 1.4.1
     3 * Version: 1.4.2
    44 */
    55
     
    238238
    239239                $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);
    241243
    242244            } elseif ($mod) {
    243245
    244246                $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);
    246250
    247251            }
  • options-for-twenty-seventeen/trunk/options-for-twenty-seventeen.php

    r3417427 r3418378  
    22/*
    33 * Plugin Name: Options for Twenty Seventeen
    4  * Version: 2.5.5
     4 * Version: 2.5.6
    55 * Plugin URI: https://webd.uk/product/options-for-twenty-seventeen-upgrade/
    66 * Description: Adds powerful customizer options to modify all aspects of the default WordPress theme Twenty Seventeen
     
    2424    class options_for_twenty_seventeen_class {
    2525
    26         public static $version = '2.5.5';
     26        public static $version = '2.5.6';
    2727
    2828        function __construct() {
  • options-for-twenty-seventeen/trunk/readme.txt

    r3417427 r3418378  
    66Tested up to: 6.9
    77Requires PHP: 5.6
    8 Stable tag: 2.5.5
     8Stable tag: 2.5.6
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    181181== Changelog ==
    182182
     183= 2.5.6 =
     184* Fixed a bug with CSS output
     185
    183186= 2.5.5 =
    184187* General housekeeping preparing for "Plugin Check" code review
     
    721724== Upgrade Notice ==
    722725
    723 = 2.5.5 =
    724 * General housekeeping preparing for "Plugin Check" code review
     726= 2.5.6 =
     727* Fixed a bug with CSS output
Note: See TracChangeset for help on using the changeset viewer.