Plugin Directory

Changeset 2255406


Ignore:
Timestamp:
03/06/2020 05:44:00 AM (6 years ago)
Author:
wptipsntricks
Message:

.committing version 1.8.8

Location:
wp-video-lightbox/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • wp-video-lightbox/trunk/readme.txt

    r2205738 r2255406  
    55Requires at least: 3.0
    66Tested up to: 5.3
    7 Stable tag: 1.8.8
     7Stable tag: 1.8.9
    88License: GPLv2 or later
    99
     
    118118== Changelog ==
    119119
     120= 1.8.9 =
     121* Made some changes to the settings.
     122
    120123= 1.8.8 =
    121124* Video lightbox is now compatible with WordPress 5.0.
  • wp-video-lightbox/trunk/wp-video-lightbox.php

    r1987457 r2255406  
    22/*
    33Plugin Name: WP Video Lightbox
    4 Version: 1.8.8
     4Version: 1.8.9
    55Plugin URI: https://www.tipsandtricks-hq.com/?p=2700
    66Author: Tips and Tricks HQ, Ruhul Amin
     
    1616    class WP_Video_Lightbox
    1717    {
    18         var $version = '1.8.8';
     18        var $version = '1.8.9';
    1919        var $db_version = '1.0';
    2020        var $plugin_url;
  • wp-video-lightbox/trunk/wpvl-settings.php

    r1968732 r2255406  
    136136            $wpvl_prettyPhoto->modal = (isset($_POST["modal"]))?'true':'false';
    137137            $wpvl_prettyPhoto->deeplinking = (isset($_POST["deeplinking"]))?'true':'false';
     138            /*
    138139            $wpvl_prettyPhoto->overlay_gallery = (isset($_POST["overlay_gallery"]))?'true':'false';
    139140            $wpvl_prettyPhoto->overlay_gallery_max = trim($_POST["overlay_gallery_max"]);
     141            */
    140142            $wpvl_prettyPhoto->keyboard_shortcuts = (isset($_POST["keyboard_shortcuts"]))?'true':'false';
    141143            $wpvl_prettyPhoto->ie6_fallback = (isset($_POST["ie6_fallback"]))?'true':'false';
     
    308310        </fieldset></td>
    309311        </tr>
    310        
     312        <!--
    311313        <tr valign="top">
    312314        <th scope="row"><?php _e('Overlay gallery', 'wp-video-lightbox')?></th>
     
    322324        <p class="description"><?php echo sprintf(__('Maximum number of pictures in the overlay gallery [default: %s]', 'wp-video-lightbox'), '30')?></p></td>
    323325        </tr>
    324        
     326        -->
    325327        <tr valign="top">
    326328        <th scope="row"><?php _e('Keyboard shortcuts', 'wp-video-lightbox')?></th>
Note: See TracChangeset for help on using the changeset viewer.