Plugin Directory

Changeset 3334123


Ignore:
Timestamp:
07/25/2025 11:18:35 AM (8 months ago)
Author:
gn_themes
Message:

7.4.5

Location:
shortcodes-ultimate
Files:
549 added
3 edited

Legend:

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

    r3333684 r3334123  
    5454
    5555    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
     56        strpos($atts['url'], '::') !== false ||
     57        strpos($atts['url'], 'localhost') !== false ||
     58        preg_match('/\d{1,3}\.\d{1,3}\.\d{1,3}/', $atts['url']) ||
     59        !filter_var($atts['url'], FILTER_VALIDATE_URL)
    6260    ) {
    6361        return su_error_message( 'Feed', __( 'invalid feed URL', 'shortcodes-ultimate' ) );
  • shortcodes-ultimate/trunk/readme.txt

    r3333684 r3334123  
    44Donate link: https://getshortcodes.com/pricing/
    55Tags: posts, carousel, shortcode, toggle, columns
    6 Stable tag: 7.4.4
     6Stable tag: 7.4.5
    77Requires PHP: 5.4
    88Requires at least: 5.0
     
    149149
    150150
     151= 7.4.4
     152
     153This update features security improvements and is recommended for all users
     154
     155
    151156= 7.4.3
    152157
     
    160165
    161166This update fixes an issue where widgets might not display correctly in the classic interface, and some shortcodes could appear as plain text. This update is recommended for all users
    162 
    163 If you are using premium add-ons, don't forget to visit our website using the link below and download the latest versions. The add-ons have also been updated.
    164 
    165 [Download premium add-ons](https://getshortcodes.com/account/restore-purchase/)
    166167
    167168
  • shortcodes-ultimate/trunk/shortcodes-ultimate.php

    r3333684 r3334123  
    99 * Text Domain: shortcodes-ultimate
    1010 * License: GPLv3
    11  * Version: 7.4.4
     11 * Version: 7.4.5
    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.4' );
     66    define( 'SU_PLUGIN_VERSION', '7.4.5' );
    6767    require_once dirname( __FILE__ ) . '/plugin.php';
    6868}
Note: See TracChangeset for help on using the changeset viewer.