Changeset 268655
- Timestamp:
- 04/22/2025 11:02:38 AM (7 months ago)
- Location:
- oceanwp/4.0.8
- Files:
-
- 7 edited
- 1 copied
- . (copied) (copied from oceanwp/4.0.7)
- README.md (modified) (1 diff)
- changelog.md (modified) (1 diff)
- inc/oceanwp-theme-icons.php (modified) (4 diffs)
- languages/oceanwp.pot (modified) (2 diffs)
- readme.txt (modified) (1 diff)
- sass/style.scss (modified) (1 diff)
- style.css (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
oceanwp/4.0.8/README.md
r265790 r268655 3 3 **Contributors:** The OceanWP Team 4 4 **Requires at least:** WordPress 5.6 5 **Tested up to:** WordPress 6. 7.26 **Stable tag:** 4.0. 75 **Tested up to:** WordPress 6.8 6 **Stable tag:** 4.0.8 7 7 **Requires PHP:** 7.4 8 8 **License:** GPLv2 or later -
oceanwp/4.0.8/changelog.md
r265790 r268655 1 1 # 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. 2 6 3 7 ### _2025.04.03_ - 4.0.7 -
oceanwp/4.0.8/inc/oceanwp-theme-icons.php
r257469 r268655 842 842 */ 843 843 if ( $echo ) { 844 echo $icon; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped844 echo wp_kses_post( $icon ); 845 845 } else { 846 846 return $icon; … … 866 866 function oceanwp_icon( $icon, $echo = true, $class = '', $title = '', $desc = '', $aria_hidden = true, $fallback = false ) { 867 867 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 868 873 $icon = oceanwp_print_icon( 869 874 array( … … 872 877 'title' => $title, 873 878 'desc' => $desc, 874 'area_hidden' => $aria_hidden,875 'fallback' => $fallback,879 'area_hidden' => (bool) $aria_hidden, 880 'fallback' => (bool) $fallback, 876 881 ), 877 882 false … … 884 889 */ 885 890 if ( $echo ) { 886 echo $icon; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped891 echo wp_kses_post( $icon ); 887 892 } else { 888 893 return $icon; -
oceanwp/4.0.8/languages/oceanwp.pot
r265790 r268655 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: OceanWP 4.0. 7\n"5 "Project-Id-Version: OceanWP 4.0.8\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/theme/oceanwp\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "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" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.11.0\n" -
oceanwp/4.0.8/readme.txt
r265790 r268655 1 1 == OceanWP == 2 2 Contributors: oceanwp 3 Tested up to: 6. 7.24 Stable tag: 4.0. 73 Tested up to: 6.8 4 Stable tag: 4.0.8 5 5 Requires PHP: 7.4 6 6 License: GPLv2 or later -
oceanwp/4.0.8/sass/style.scss
r265790 r268655 3 3 * Theme Name: OceanWP 4 4 * Text Domain: oceanwp 5 * Version: 4.0. 76 * Tested up to: 6. 7.25 * Version: 4.0.8 6 * Tested up to: 6.8 7 7 * Requires at least: 5.6 8 8 * Requires PHP: 7.4 -
oceanwp/4.0.8/style.css
r265790 r268655 2 2 * Theme Name: OceanWP 3 3 * Text Domain: oceanwp 4 * Version: 4.0. 75 * Tested up to: 6. 7.24 * Version: 4.0.8 5 * Tested up to: 6.8 6 6 * Requires at least: 5.6 7 7 * Requires PHP: 7.4
Note: See TracChangeset for help on using the changeset viewer.