Plugin Directory

Changeset 3349757


Ignore:
Timestamp:
08/25/2025 02:05:09 PM (7 months ago)
Author:
spiffyplugins
Message:

Version 5.2.6

Location:
wp-imageflow2/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • wp-imageflow2/trunk/includes/admin/class_admin.php

    r1576643 r3349757  
    329329       
    330330}
     331
     332global $wpfp_admin;
     333$wpfp_admin = new WPFlowPlus_Admin();
    331334}
  • wp-imageflow2/trunk/includes/bonus.php

    r2266040 r3349757  
    6969        $slideup = isset ($attr['captions'])? $attr['captions'] == 'slide-up': $options['slide_up'];
    7070        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>';
    7272            if ($image_info['desc'] != '') $captions .= '<p>' . wp_kses_post($image_info['desc'])   . '</p>';
    7373            return $captions . '</div>';
  • wp-imageflow2/trunk/includes/class_render.php

    r3159968 r3349757  
    128128                'large' => '',
    129129                'link'  => get_permalink( $this_post->ID ),
    130                 'title' => $this_post->post_title,
     130                'title' => esc_html($this_post->post_title),
    131131                'desc'  => '',
    132132            );
     
    458458                'small' => $small_image[0],
    459459                '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),
    463463            );
    464464        }
     
    514514      }
    515515   
     516
    516517}
     518
     519global $wpfp_render;
     520$wpfp_render = new WPFlowPlus_Render();
    517521}
  • wp-imageflow2/trunk/readme.txt

    r3216047 r3349757  
    44Requires at least: 3.0.1
    55Tested up to: 6.7
    6 Stable tag: 5.2.5
     6Stable tag: 5.2.6
    77License: GPLv2 or later
    88
     
    167167== Changelog ==
    168168
     169Version 5.2.6 (August 26, 2025)
     170
     171* Security: sanitize image description and title
     172* Tweak: fix deprecated warnings
     173
    169174Version 5.2.5 (January 2, 2025)
    170175
  • wp-imageflow2/trunk/wp-imageflow2.php

    r3216046 r3349757  
    44Plugin URI: https://spiffyplugins.ca/wp-flow-plus
    55Description: Flow style carousel with Lightbox popups
    6 Version: 5.2.5
     6Version: 5.2.6
    77Author: Spiffy Plugins
    88Author URI: https://www.spiffyplugins.ca
     
    5555            require_once ('includes/admin/class_admin.php');
    5656           
    57             $this->admin = new WPFlowPlus_Admin();
     57            // $this->admin = new WPFlowPlus_Admin();
    5858        }
    5959       
    6060        // Initialize classes
    61         $this->render = new WPFlowPlus_Render();
     61        // $this->render = new WPFlowPlus_Render();
    6262       
    6363        // Hooks and actions
Note: See TracChangeset for help on using the changeset viewer.