Changeset 3383044
- Timestamp:
- 10/23/2025 04:19:14 AM (5 months ago)
- Location:
- logo-showcase/trunk
- Files:
-
- 5 edited
-
inc/logo-showcase-admin-info.php (modified) (1 diff)
-
inc/logo-showcase-metabox.php (modified) (6 diffs)
-
inc/logo-showcase-postytpe.php (modified) (1 diff)
-
logo-showcase-wordpress.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
logo-showcase/trunk/inc/logo-showcase-admin-info.php
r3328079 r3383044 4 4 } 5 5 ?> 6 7 6 <div class="wraper doc-suport"> 8 7 <div class="doc-support-header"> -
logo-showcase/trunk/inc/logo-showcase-metabox.php
r3354397 r3383044 1075 1075 } 1076 1076 1077 #Checks for input and sanitizes/saves if needed 1078 if ( isset( $_POST['logo_showcase_columns_radius'] ) && ( $_POST['logo_showcase_columns_radius'] != '' ) ) { 1079 update_post_meta( $post_id, 'logo_showcase_columns_radius', esc_html( $_POST['logo_showcase_columns_radius'] ) ); 1080 } 1077 #Checks for input and sanitizes/saves if needed 1078 if ( isset( $_POST['logo_showcase_columns_radius'] ) ) { 1079 $logo_showcase_columns_radius = absint( $_POST['logo_showcase_columns_radius'] ); // ensures non-negative integer 1080 update_post_meta( $post_id, 'logo_showcase_columns_radius', $logo_showcase_columns_radius ); 1081 } 1081 1082 1082 1083 // Checks for input and sanitizes/saves if needed … … 1134 1135 } 1135 1136 1136 #Checks for input and sanitizes/saves if needed 1137 if ( isset( $_POST['logo_showcase_free_open_link'] ) && ( $_POST['logo_showcase_free_open_link'] != '' ) ) { 1138 update_post_meta( $post_id, 'logo_showcase_free_open_link', esc_html( $_POST['logo_showcase_free_open_link'] ) ); 1139 } 1137 #Checks for input and sanitizes/saves if needed 1138 if ( isset( $_POST[ 'logo_showcase_free_open_link' ] ) ) { 1139 $logo_showcase_free_open_link = sanitize_text_field( $_POST['logo_showcase_free_open_link'] ); 1140 update_post_meta( $post_id, 'logo_showcase_free_open_link', $logo_showcase_free_open_link ); 1141 } 1140 1142 1141 1143 // Checks for input and sanitizes/saves if needed … … 1145 1147 } 1146 1148 1147 #Checks for input and sanitizes/saves if needed 1148 if ( isset( $_POST['logo_showcase_table_header_bg'] ) && ( $_POST['logo_showcase_table_header_bg'] != '' ) ) { 1149 update_post_meta( $post_id, 'logo_showcase_table_header_bg', esc_html( $_POST['logo_showcase_table_header_bg'] ) ); 1150 } 1151 1152 #Checks for input and sanitizes/saves if needed 1153 if ( isset( $_POST['logo_showcase_table_header_text'] ) && ( $_POST['logo_showcase_table_header_text'] != '' ) ) { 1154 update_post_meta( $post_id, 'logo_showcase_table_header_text', esc_html( $_POST['logo_showcase_table_header_text'] ) ); 1155 } 1156 1157 #Checks for input and sanitizes/saves if needed 1158 if ( isset( $_POST['logo_showcase_header_font_size'] ) && ( $_POST['logo_showcase_header_font_size'] != '' ) ) { 1159 update_post_meta( $post_id, 'logo_showcase_header_font_size', esc_html( $_POST['logo_showcase_header_font_size'] ) ); 1160 } 1149 // Checks for input and sanitizes/saves if needed 1150 if ( isset( $_POST[ 'logo_showcase_table_header_bg' ] ) ) { 1151 $logo_showcase_table_header_bg = sanitize_hex_color( $_POST['logo_showcase_table_header_bg'] ); 1152 update_post_meta( $post_id, 'logo_showcase_table_header_bg', $logo_showcase_table_header_bg ); 1153 } 1154 1155 // Checks for input and sanitizes/saves if needed 1156 if ( isset( $_POST[ 'logo_showcase_table_header_text' ] ) ) { 1157 $logo_showcase_table_header_text = sanitize_hex_color( $_POST['logo_showcase_table_header_text'] ); 1158 update_post_meta( $post_id, 'logo_showcase_table_header_text', $logo_showcase_table_header_text ); 1159 } 1160 1161 // Checks for input and sanitizes/saves if needed 1162 if ( isset( $_POST[ 'logo_showcase_header_font_size' ] ) ) { 1163 $logo_showcase_header_font_size = sanitize_text_field( $_POST['logo_showcase_header_font_size'] ); 1164 update_post_meta( $post_id, 'logo_showcase_header_font_size', $logo_showcase_header_font_size ); 1165 } 1161 1166 1162 1167 // Checks for input and sanitizes/saves if needed … … 1226 1231 } 1227 1232 1228 #Checks for input and sanitizes/saves if needed 1229 if ( isset( $_POST['grid_normal_lists'] ) && ( $_POST['grid_normal_lists'] != '' ) ) { 1230 update_post_meta( $post_id, 'grid_normal_lists', esc_html( $_POST['grid_normal_lists'] ) ); 1231 } 1233 #Checks for input and sanitizes/saves if needed 1234 if ( isset( $_POST[ 'grid_normal_lists' ] ) ) { 1235 $grid_normal_lists = sanitize_text_field( $_POST['grid_normal_lists'] ); 1236 update_post_meta( $post_id, 'grid_normal_lists', $grid_normal_lists ); 1237 } 1232 1238 1233 1239 // Sanitize and save 'list_normal_column' field … … 1351 1357 } 1352 1358 1359 // Checks for input and sanitizes/saves if needed 1360 if ( isset( $_POST['slide_center_mode'] ) && !empty( $_POST['slide_center_mode'] ) ) { 1361 $slide_center_mode = sanitize_text_field( $_POST['slide_center_mode'] ); 1362 update_post_meta( $post_id, 'slide_center_mode', $slide_center_mode ); 1363 } 1364 1353 1365 #Checks for input and sanitizes/saves if needed 1354 if ( isset( $_POST['slide_center_mode'] ) && ( $_POST['slide_center_mode'] != '' ) ) { 1355 update_post_meta( $post_id, 'slide_center_mode', esc_html( $_POST['slide_center_mode'] ) ); 1356 } 1357 1358 #Checks for input and sanitizes/saves if needed 1359 if ( isset( $_POST['logo_showcase_free_direction'] ) && ( $_POST['logo_showcase_free_direction'] != '' ) ) { 1360 update_post_meta( $post_id, 'logo_showcase_free_direction', esc_html( $_POST['logo_showcase_free_direction'] ) ); 1366 if (isset($_POST['logo_showcase_free_direction'])) { 1367 $logo_showcase_free_direction = sanitize_text_field($_POST['logo_showcase_free_direction']); 1368 update_post_meta($post_id, 'logo_showcase_free_direction', $logo_showcase_free_direction); 1361 1369 } 1362 1370 … … 1473 1481 return; 1474 1482 } 1475 1476 1483 ?> 1477 1484 -
logo-showcase/trunk/inc/logo-showcase-postytpe.php
r3354397 r3383044 1 1 <?php 2 3 2 if ( ! defined( 'ABSPATH' ) ) { 4 3 exit; -
logo-showcase/trunk/logo-showcase-wordpress.php
r3354397 r3383044 4 4 * Plugin URI: https://themepoints.com/logoshowcase/ 5 5 * Description: Logo Showcase plugin allow to Display a list of clients, supporters, partners or sponsors logos in your WordPress website easily. 6 * Version: 3.0.96 * Version: 4.0.0 7 7 * Author: Themepoints 8 8 * Author URI: https://themepoints.com … … 16 16 17 17 // Define constants for plugin paths 18 define( 'LOGO_SHOWCASE_VERSION', ' 3.0.9' );18 define( 'LOGO_SHOWCASE_VERSION', '4.0.0' ); 19 19 define( 'LOGO_SHOWCASE_WP_PLUGIN_PATH', WP_PLUGIN_URL . '/' . plugin_basename( dirname( __FILE__ ) ) . '/' ); 20 20 define( 'logo_showcase_wp_plugin_dir', plugin_dir_path( __FILE__ ) ); -
logo-showcase/trunk/readme.txt
r3354397 r3383044 4 4 Tags: logo, logo showcase, logo slider, logo carousel, slider, responsive carousel, showcase logo, image carousel, logo showcase, logo slide, logo slide show, logo slideshow, sponsors, carousel 5 5 Requires at least: 4.0 6 Tested up to: 6.8. 27 Stable tag: 3.0.96 Tested up to: 6.8.3 7 Stable tag: 4.0.0 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 195 195 == Changelog == 196 196 197 = 4.0.0 = 198 * Fix: Fix Vulnerability Issue. 199 * Update: Update Options Page. 200 197 201 = 3.0.9 = 198 202 * Added New Styles.
Note: See TracChangeset
for help on using the changeset viewer.