Plugin Directory

Changeset 3461288


Ignore:
Timestamp:
02/14/2026 10:09:09 AM (6 weeks ago)
Author:
limchik
Message:

Release 1.0.3 (update trunk)

Location:
smt-toolkit/trunk
Files:
10 added
4 edited

Legend:

Unmodified
Added
Removed
  • smt-toolkit/trunk/includes/modules/discounts/class-discounts-svg.php

    r3461137 r3461288  
    102102            $huge_svg = true;
    103103            echo '<template id="smt-badge-onsale-' . (int)$profile['id'] . '">';
     104            // To allow sanitized svg and html and intentionally printed raw
     105            // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
    104106            echo $badge;
    105107            echo '</template>';
     
    179181            return '<span class="smt-badge onsale" data-badge="onsale-' . esc_attr($profile_id) . '" style="' . esc_attr($style) . '"></span>';
    180182        } else {
    181             // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped --
    182             // To allow sanitized svg and html and intentionally printed raw.
     183            // To allow sanitized svg and html and intentionally printed raw
     184            // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
    183185            return '<span class="smt-badge onsale" data-badge="onsale" style="' . esc_attr($style) . '">' . $badge . '</span>';
    184186        }
  • smt-toolkit/trunk/readme.txt

    r3461143 r3461288  
    55Requires at least: 5.8
    66Tested up to: 6.9
    7 Stable tag: 1.0.2
     7Stable tag: 1.0.3
    88Requires PHP: 7.4
    99License: GPLv2 or later
     
    205205== Changelog ==
    206206
     207= 1.0.3 =
     208* Fixed missing store-settings module in release package
     209* Minor stability improvements
     210
    207211= 1.0.2 =
    208 * Removed undefined variable
     212* Fixed undefined variable in Discounts cron handler
    209213
    210214= 1.0.1 =
  • smt-toolkit/trunk/smt-toolkit.php

    r3461143 r3461288  
    33 * Plugin Name: SMT Toolkit for WooCommerce
    44 * Description: Modular toolkit for store automation: imports, discounts, transliteration and cron-based workflows.
    5  * Version: 1.0.2
     5 * Version: 1.0.3
    66 * Author: limchik
    77 * Text Domain: smt-toolkit
     
    2020define('SMTTOOL_PATH', plugin_dir_path(__FILE__));
    2121define('SMTTOOL_URL',  plugin_dir_url(__FILE__));
    22 define('SMTTOOL_VERSION',  '1.0.1');
     22define('SMTTOOL_VERSION',  '1.0.3');
    2323
    2424/**
  • smt-toolkit/trunk/uninstall.php

    r3461137 r3461288  
    3232// phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound
    3333$like = $wpdb->esc_like( 'smttool_gdi_last_' ) . '%';
    34 // phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching
     34// phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching, WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound
    3535$keys = $wpdb->get_col(
    3636    $wpdb->prepare(
Note: See TracChangeset for help on using the changeset viewer.