Plugin Directory

Changeset 2929827


Ignore:
Timestamp:
06/22/2023 06:53:14 PM (3 years ago)
Author:
chrisakelley
Message:

1.8.6.2 release

Location:
envira-gallery-lite
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • envira-gallery-lite/tags/1.8.6.2/envira-gallery-lite.php

    r2911246 r2929827  
    66 * Author:      Envira Gallery Team
    77 * Author URI:  http://enviragallery.com
    8  * Version:     1.8.6.1
     8 * Version:     1.8.6.2
    99 * Text Domain: envira-gallery-lite
    1010 *
     
    5656     * @var string
    5757     */
    58     public $version = '1.8.6.1';
     58    public $version = '1.8.6.2';
    5959
    6060    /**
  • envira-gallery-lite/tags/1.8.6.2/includes/admin/ajax.php

    r2901860 r2929827  
    760760        ];
    761761    } else {
     762        $src       = isset( $image['src'] ) ? $image['src'] : $image['url'];
     763        $link      = isset( $image['link'] ) && wp_http_validate_url( $image['link'] ) ? $image['link'] : $src;
    762764        $new_image = [
    763765            'status'  => 'active',
    764             'src'     => ( isset( $image['src'] ) ? $image['src'] : $image['url'] ),
     766            'src'     => $src,
    765767            'title'   => $image['title'],
    766             'link'    => $image['link'],
     768            'link'    => $link,
    767769            'alt'     => $image['alt'],
    768770            'caption' => $image['caption'],
  • envira-gallery-lite/tags/1.8.6.2/readme.txt

    r2911246 r2929827  
    33Tags: gallery, image gallery, photo gallery, best gallery plugin, wordpress gallery plugin
    44Requires at least: 5.0.0
    5 Tested up to: 6.2.0
     5Tested up to: 6.2.2
    66Requires PHP: 5.6
    7 Stable tag: 1.8.6.1
     7Stable tag: 1.8.6.2
    88License: GNU General Public License v2.0 or later
    99
     
    210210== Changelog ==
    211211
     2121.8.6.2
     213
     214* Fixed: Link Validation when inserting images into galleries
     215
    2122161.8.6.1
    213217
  • envira-gallery-lite/trunk/envira-gallery-lite.php

    r2911246 r2929827  
    66 * Author:      Envira Gallery Team
    77 * Author URI:  http://enviragallery.com
    8  * Version:     1.8.6.1
     8 * Version:     1.8.6.2
    99 * Text Domain: envira-gallery-lite
    1010 *
     
    5656     * @var string
    5757     */
    58     public $version = '1.8.6.1';
     58    public $version = '1.8.6.2';
    5959
    6060    /**
  • envira-gallery-lite/trunk/includes/admin/ajax.php

    r2901860 r2929827  
    760760        ];
    761761    } else {
     762        $src       = isset( $image['src'] ) ? $image['src'] : $image['url'];
     763        $link      = isset( $image['link'] ) && wp_http_validate_url( $image['link'] ) ? $image['link'] : $src;
    762764        $new_image = [
    763765            'status'  => 'active',
    764             'src'     => ( isset( $image['src'] ) ? $image['src'] : $image['url'] ),
     766            'src'     => $src,
    765767            'title'   => $image['title'],
    766             'link'    => $image['link'],
     768            'link'    => $link,
    767769            'alt'     => $image['alt'],
    768770            'caption' => $image['caption'],
  • envira-gallery-lite/trunk/readme.txt

    r2911246 r2929827  
    33Tags: gallery, image gallery, photo gallery, best gallery plugin, wordpress gallery plugin
    44Requires at least: 5.0.0
    5 Tested up to: 6.2.0
     5Tested up to: 6.2.2
    66Requires PHP: 5.6
    7 Stable tag: 1.8.6.1
     7Stable tag: 1.8.6.2
    88License: GNU General Public License v2.0 or later
    99
     
    210210== Changelog ==
    211211
     2121.8.6.2
     213
     214* Fixed: Link Validation when inserting images into galleries
     215
    2122161.8.6.1
    213217
Note: See TracChangeset for help on using the changeset viewer.