Changeset 3349757
- Timestamp:
- 08/25/2025 02:05:09 PM (7 months ago)
- Location:
- wp-imageflow2/trunk
- Files:
-
- 5 edited
-
includes/admin/class_admin.php (modified) (1 diff)
-
includes/bonus.php (modified) (1 diff)
-
includes/class_render.php (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
-
wp-imageflow2.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-imageflow2/trunk/includes/admin/class_admin.php
r1576643 r3349757 329 329 330 330 } 331 332 global $wpfp_admin; 333 $wpfp_admin = new WPFlowPlus_Admin(); 331 334 } -
wp-imageflow2/trunk/includes/bonus.php
r2266040 r3349757 69 69 $slideup = isset ($attr['captions'])? $attr['captions'] == 'slide-up': $options['slide_up']; 70 70 if (!$nocaptions && $slideup) { 71 $captions = '<div class="wpif2-slideup-caption"><h4>' . $image_info['title']. '</h4>';71 $captions = '<div class="wpif2-slideup-caption"><h4>' . esc_html($image_info['title']) . '</h4>'; 72 72 if ($image_info['desc'] != '') $captions .= '<p>' . wp_kses_post($image_info['desc']) . '</p>'; 73 73 return $captions . '</div>'; -
wp-imageflow2/trunk/includes/class_render.php
r3159968 r3349757 128 128 'large' => '', 129 129 'link' => get_permalink( $this_post->ID ), 130 'title' => $this_post->post_title,130 'title' => esc_html($this_post->post_title), 131 131 'desc' => '', 132 132 ); … … 458 458 'small' => $small_image[0], 459 459 'large' => $large_image[0], 460 'link' => $link_url,461 'title' => $attachment->post_title,462 'desc' => $attachment->post_content,460 'link' => esc_html($link_url), 461 'title' => esc_html($attachment->post_title), 462 'desc' => esc_html($attachment->post_content), 463 463 ); 464 464 } … … 514 514 } 515 515 516 516 517 } 518 519 global $wpfp_render; 520 $wpfp_render = new WPFlowPlus_Render(); 517 521 } -
wp-imageflow2/trunk/readme.txt
r3216047 r3349757 4 4 Requires at least: 3.0.1 5 5 Tested up to: 6.7 6 Stable tag: 5.2. 56 Stable tag: 5.2.6 7 7 License: GPLv2 or later 8 8 … … 167 167 == Changelog == 168 168 169 Version 5.2.6 (August 26, 2025) 170 171 * Security: sanitize image description and title 172 * Tweak: fix deprecated warnings 173 169 174 Version 5.2.5 (January 2, 2025) 170 175 -
wp-imageflow2/trunk/wp-imageflow2.php
r3216046 r3349757 4 4 Plugin URI: https://spiffyplugins.ca/wp-flow-plus 5 5 Description: Flow style carousel with Lightbox popups 6 Version: 5.2. 56 Version: 5.2.6 7 7 Author: Spiffy Plugins 8 8 Author URI: https://www.spiffyplugins.ca … … 55 55 require_once ('includes/admin/class_admin.php'); 56 56 57 $this->admin = new WPFlowPlus_Admin();57 // $this->admin = new WPFlowPlus_Admin(); 58 58 } 59 59 60 60 // Initialize classes 61 $this->render = new WPFlowPlus_Render();61 // $this->render = new WPFlowPlus_Render(); 62 62 63 63 // Hooks and actions
Note: See TracChangeset
for help on using the changeset viewer.