Plugin Directory

Changeset 3298452


Ignore:
Timestamp:
05/22/2025 05:08:23 AM (7 months ago)
Author:
vapvarun
Message:

version update

Location:
activity-link-preview-for-buddypress
Files:
15 added
2 edited

Legend:

Unmodified
Added
Removed
  • activity-link-preview-for-buddypress/trunk/bp-activity-link-preview.php

    r3287274 r3298452  
    55 * Plugin Name:       Activity Link Preview For BuddyPress
    66 * Plugin URI:        https://wbcomdesigns.com/downloads/buddypress-activity-link-preview/
    7  * Description:       BuddyPress activity link preview display as image title and description from the site When links are used in activity posts.
    8  * Version:           1.6.0
     7 * Description:       BuddyPress activity link preview displays as image title and description from the site when links are used in activity posts.
     8 * Version:           1.6.1
    99 * Author:            wbcomdesigns
    1010 * Author URI:        https://wbcomdesigns.com/
     
    318318 */
    319319function bp_activity_link_preview_save_link_data( $activity ) {
    320     $bp_activity_nonce = isset( $_POST['_wpnonce_post_update'] ) ? sanitize_text_field( wp_unslash( $_POST['_wpnonce_post_update'] ) ) : '';
    321     // Check for nonce security.
    322     if ( empty( $bp_activity_nonce ) || ! wp_verify_nonce( $bp_activity_nonce, 'post_update' ) ) {
    323         die( 'Security check failed.' );
    324     }
     320
    325321    if ( isset( $_POST['link_url'] ) && isset( $_POST['link_title'] ) && isset( $_POST['link_description'] ) && isset( $_POST['link_image'] ) ) {
    326322
  • activity-link-preview-for-buddypress/trunk/readme.txt

    r3287274 r3298452  
    55Requires at least: 3.0.1
    66Tested up to: 6.8.0
    7 Stable tag: 1.6.0
     7Stable tag: 1.6.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3636
    3737== Changelog ==
     38= 1.6.1 =
     39* Security: Patched SSRF (Server Side Request Forgery) vulnerability in the URL parser.
    3840
    3941= 1.6.0 =
Note: See TracChangeset for help on using the changeset viewer.