Make WordPress Themes

Changeset 268655

Timestamp:
04/22/2025 11:02:38 AM (7 months ago)
Author:
themedropbox
Message:

New version of OceanWP - 4.0.8

Location:
oceanwp/4.0.8
Files:
7 edited
1 copied

Legend:

Unmodified
Added
Removed
  • oceanwp/4.0.8/README.md

    r265790 r268655  
    33**Contributors:** The OceanWP Team
    44**Requires at least:** WordPress 5.6
    5 **Tested up to:** WordPress 6.7.2
    6 **Stable tag:** 4.0.7
     5**Tested up to:** WordPress 6.8
     6**Stable tag:** 4.0.8
    77**Requires PHP:** 7.4
    88**License:** GPLv2 or later
  • oceanwp/4.0.8/changelog.md

    r265790 r268655  
    11# OceanWP Changelog
     2
     3### _2025.04.21_ - 4.0.8
     4- **Updated**:: Compatibility: WordPress version number.
     5- **Fixed**:: Potential vulnerability patched: Report by Wordfence from APR 11th 2025. Related to Ocean Extra 1/3 report patch.
    26
    37### _2025.04.03_ - 4.0.7
  • oceanwp/4.0.8/inc/oceanwp-theme-icons.php

    r257469 r268655  
    842842         */
    843843        if ( $echo ) {
    844             echo $icon; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
     844            echo wp_kses_post( $icon );
    845845        } else {
    846846            return $icon;
     
    866866    function oceanwp_icon( $icon, $echo = true, $class = '', $title = '', $desc = '', $aria_hidden = true, $fallback = false ) {
    867867
     868        $icon  = sanitize_html_class( $icon );
     869        $class = sanitize_html_class( $class );
     870        $title = sanitize_text_field( $title );
     871        $desc  = sanitize_text_field( $desc );
     872
    868873        $icon = oceanwp_print_icon(
    869874            array(
     
    872877                'title'       => $title,
    873878                'desc'        => $desc,
    874                 'area_hidden' => $aria_hidden,
    875                 'fallback'    => $fallback,
     879                'area_hidden' => (bool) $aria_hidden,
     880                'fallback'    => (bool) $fallback,
    876881            ),
    877882            false
     
    884889         */
    885890        if ( $echo ) {
    886             echo $icon; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
     891            echo wp_kses_post( $icon );
    887892        } else {
    888893            return $icon;
  • oceanwp/4.0.8/languages/oceanwp.pot

    r265790 r268655  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: OceanWP 4.0.7\n"
     5"Project-Id-Version: OceanWP 4.0.8\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/theme/oceanwp\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2025-04-03T09:47:48+00:00\n"
     12"POT-Creation-Date: 2025-04-21T08:18:13+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.11.0\n"
  • oceanwp/4.0.8/readme.txt

    r265790 r268655  
    11== OceanWP ==
    22Contributors: oceanwp
    3 Tested up to: 6.7.2
    4 Stable tag: 4.0.7
     3Tested up to: 6.8
     4Stable tag: 4.0.8
    55Requires PHP: 7.4
    66License: GPLv2 or later
  • oceanwp/4.0.8/sass/style.scss

    r265790 r268655  
    33 * Theme Name:         OceanWP
    44 * Text Domain:        oceanwp
    5  * Version:            4.0.7
    6  * Tested up to:       6.7.2
     5 * Version:            4.0.8
     6 * Tested up to:       6.8
    77 * Requires at least:  5.6
    88 * Requires PHP:       7.4
  • oceanwp/4.0.8/style.css

    r265790 r268655  
    22 * Theme Name:         OceanWP
    33 * Text Domain:        oceanwp
    4  * Version:            4.0.7
    5  * Tested up to:       6.7.2
     4 * Version:            4.0.8
     5 * Tested up to:       6.8
    66 * Requires at least:  5.6
    77 * Requires PHP:       7.4
Note: See TracChangeset for help on using the changeset viewer.