Plugin Directory

Changeset 2726841


Ignore:
Timestamp:
05/19/2022 01:14:55 PM (3 years ago)
Author:
netzstrategen
Message:

Preparing release 2.8.5.

Location:
gallerya/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • gallerya/trunk/README.txt

    r2725048 r2726841  
    44Requires at least: 4.5
    55Tested up to: 5.6
    6 Stable tag: 2.8.4
     6Stable tag: 2.8.5
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    2424
    2525== Changelog ==
     26
     27= 2.8.5.=
     282022-05-18
     29
     30* Fixed fatal error in single product view.
    2631
    2732= 2.8.4 =
  • gallerya/trunk/package.json

    r2725048 r2726841  
    11{
    22  "name": "gallerya",
    3   "version": "2.8.4",
     3  "version": "2.8.5",
    44  "author": "netzstrategen <[email protected]>",
    55  "repository": {
  • gallerya/trunk/plugin.php

    r2725048 r2726841  
    33/*
    44  Plugin Name: Gallerya
    5   Version: 2.8.4
     5  Version: 2.8.5
    66  Text Domain: gallerya
    77  Description: Change the native post gallery to be displayed as a slider with lightbox support.
  • gallerya/trunk/src/Video.php

    r2631983 r2726841  
    172172    global $product;
    173173
    174     if (!$product) {
     174    if (!$product || !is_a($product, 'WC_Product')) {
    175175      return $value;
    176176    }
  • gallerya/trunk/src/WooCommerce.php

    r2617278 r2726841  
    142142    global $product;
    143143
    144     if (!$product || $product->get_type() !== 'variable') {
     144    if (!$product || !is_a($product, 'WC_Product') || $product->get_type() !== 'variable') {
    145145      return $value;
    146146    }
Note: See TracChangeset for help on using the changeset viewer.