Plugin Directory

Changeset 3333684


Ignore:
Timestamp:
07/24/2025 01:43:18 PM (8 months ago)
Author:
gn_themes
Message:

7.4.4

Location:
shortcodes-ultimate
Files:
549 added
3 edited

Legend:

Unmodified
Added
Removed
  • shortcodes-ultimate/trunk/includes/shortcodes/feed.php

    r3026377 r3333684  
    5050
    5151    $atts   = su_parse_shortcode_atts( 'feed', $atts );
    52     $feed   = null;
    53     $items  = array();
    54     $output = '';
    5552
    5653    $atts['url'] = wp_specialchars_decode( $atts['url'] );
    5754
    58     if ( ! filter_var( $atts['url'], FILTER_VALIDATE_URL ) ) {
     55    if (
     56        ! filter_var( $atts['url'], FILTER_VALIDATE_URL ) ||
     57        filter_var(
     58            $atts['url'],
     59            FILTER_VALIDATE_IP, FILTER_FLAG_NO_PRIV_RANGE | FILTER_FLAG_NO_RES_RANGE
     60        ) ||
     61        strpos( $atts['url'], 'localhost' ) !== false
     62    ) {
    5963        return su_error_message( 'Feed', __( 'invalid feed URL', 'shortcodes-ultimate' ) );
    6064    }
  • shortcodes-ultimate/trunk/readme.txt

    r3328729 r3333684  
    44Donate link: https://getshortcodes.com/pricing/
    55Tags: posts, carousel, shortcode, toggle, columns
    6 Stable tag: 7.4.3
     6Stable tag: 7.4.4
    77Requires PHP: 5.4
    88Requires at least: 5.0
     
    142142
    143143
     144= 7.4.4
     145
     146This update features security improvements and is recommended for all users
     147
     148If you're experiencing any issues with the premium add-ons, please visit the [Restore Purchase](https://getshortcodes.com/account/restore-purchase/) page to download the latest versions. Most likely, the issue has already been fixed.
     149
    144150
    145151= 7.4.3
     
    147153This update features security improvements and is recommended for all users
    148154
    149 - Security patches
     155- Security patch
    150156- Updated Freemius SDK
    151157
  • shortcodes-ultimate/trunk/shortcodes-ultimate.php

    r3328729 r3333684  
    99 * Text Domain: shortcodes-ultimate
    1010 * License: GPLv3
    11  * Version: 7.4.3
     11 * Version: 7.4.4
    1212 * Requires PHP: 5.4
    1313 * Requires at least: 5.0
     
    6464    }
    6565    define( 'SU_PLUGIN_FILE', __FILE__ );
    66     define( 'SU_PLUGIN_VERSION', '7.4.3' );
     66    define( 'SU_PLUGIN_VERSION', '7.4.4' );
    6767    require_once dirname( __FILE__ ) . '/plugin.php';
    6868}
Note: See TracChangeset for help on using the changeset viewer.