Changeset 3139899
- Timestamp:
- 08/22/2024 05:14:51 PM (19 months ago)
- Location:
- devvn-image-hotspot
- Files:
-
- 32 added
- 3 edited
-
tags/1.2.6 (added)
-
tags/1.2.6/admin (added)
-
tags/1.2.6/admin/css (added)
-
tags/1.2.6/admin/css/bootstrap.css (added)
-
tags/1.2.6/admin/css/maps_points_style.css (added)
-
tags/1.2.6/admin/inc (added)
-
tags/1.2.6/admin/inc/add_shortcode_devvn_ihotspot.php (added)
-
tags/1.2.6/admin/inc/cpt-ihotspot.php (added)
-
tags/1.2.6/admin/inc/metabox-donate.php (added)
-
tags/1.2.6/admin/inc/settings.php (added)
-
tags/1.2.6/admin/js (added)
-
tags/1.2.6/admin/js/bootstrap.min.js (added)
-
tags/1.2.6/admin/js/maps_points.js (added)
-
tags/1.2.6/devvn-image-hotspot.php (added)
-
tags/1.2.6/frontend (added)
-
tags/1.2.6/frontend/css (added)
-
tags/1.2.6/frontend/css/ihotspot.min.css (added)
-
tags/1.2.6/frontend/css/jquery.powertip.min.css (added)
-
tags/1.2.6/frontend/css/maps_points.css (added)
-
tags/1.2.6/frontend/js (added)
-
tags/1.2.6/frontend/js/jquery.ihotspot.min.js (added)
-
tags/1.2.6/frontend/js/jquery.powertip.min.js (added)
-
tags/1.2.6/frontend/js/maps_points.js (added)
-
tags/1.2.6/i18n (added)
-
tags/1.2.6/i18n/languages (added)
-
tags/1.2.6/i18n/languages/devvn-image-hotspot.pot (added)
-
tags/1.2.6/languages (added)
-
tags/1.2.6/languages/devvn-image-hotspot.pot (added)
-
tags/1.2.6/license.txt (added)
-
tags/1.2.6/readme.txt (added)
-
tags/1.2.6/screenshot-1.png (added)
-
tags/1.2.6/screenshot-2.png (added)
-
trunk/admin/inc/add_shortcode_devvn_ihotspot.php (modified) (1 diff)
-
trunk/devvn-image-hotspot.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
devvn-image-hotspot/trunk/admin/inc/add_shortcode_devvn_ihotspot.php
r3136703 r3139899 17 17 18 18 if(!$data_post){ 19 $data_post = maybe_unserialize(get_post_field('post_content', $idPost)); 19 $post_content = get_post_field('post_content', $idPost); 20 if ( is_serialized( $post_content ) ) { 21 $data_post = @unserialize( trim( $post_content ), array('allowed_classes' => false)); 22 }else { 23 $data_post = $post_content; 24 } 20 25 } 21 26 -
devvn-image-hotspot/trunk/devvn-image-hotspot.php
r3136703 r3139899 5 5 Description: Image Hotspot help you add hotspot to your images. 6 6 Author: Le Van Toan 7 Version: 1.2. 57 Version: 1.2.6 8 8 Author URI: https://levantoan.com/ 9 9 Text Domain: devvn-image-hotspot … … 30 30 defined( 'ABSPATH' ) or die( 'No script kiddies please!' ); 31 31 32 define('DEVVN_IHOTSPOT_VER', '1.2. 5');32 define('DEVVN_IHOTSPOT_VER', '1.2.6'); 33 33 define('DEVVN_IHOTSPOT_DEV_MOD', true); 34 34 … … 105 105 106 106 if(!$data_post){ 107 $data_post = maybe_unserialize( $post->post_content ); 107 $post_content = $post->post_content; 108 if ( is_serialized( $post_content ) ) { 109 $data_post = @unserialize( trim( $post_content ), array('allowed_classes' => false)); 110 }else { 111 $data_post = $post_content; 112 } 108 113 } 109 114 -
devvn-image-hotspot/trunk/readme.txt
r3136703 r3139899 5 5 Requires at least: 4.3 6 6 Tested up to: 6.6.1 7 Stable tag: 1.2. 57 Stable tag: 1.2.6 8 8 License: GPLv3 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0 … … 50 50 51 51 For more information, see [Releases](https://levantoan.com/devvn-image-hotspot). 52 53 = 1.2.6 - 23/08/2024 = 54 55 * Add allowed_classes => false to unserialize. As suggested by "Michelle Porter - Wordfence Web Application Vulnerability Analyst". Many thanks to Michelle Porter 52 56 53 57 = 1.2.5 - 16/08/2024 =
Note: See TracChangeset
for help on using the changeset viewer.