Plugin Directory


Ignore:
Timestamp:
10/28/2023 06:02:52 PM (18 months ago)
Author:
gopiplus
Message:

Tested up to 6.4

Location:
left-right-image-slideshow-gallery/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • left-right-image-slideshow-gallery/trunk/left-right-image-slideshow-gallery.php

    r2651617 r2985417  
    55Description: Left right image slideshow gallery lets showcase images in a horizontal move style. Single image at a time and pull one by one continually. This slideshow will pause on mouse over. The speed of the plugin gallery is customizable. Persistence of last viewed image supported, so when the user reloads the page, the slideshow continues from the last image.
    66Author: Gopi Ramasamy
    7 Version: 12.0
     7Version: 12.1
    88Author URI: http://www.gopiplus.com/work/2011/04/25/wordpress-plugin-left-right-image-slideshow-gallery/
    99Donate link: http://www.gopiplus.com/work/2011/04/25/wordpress-plugin-left-right-image-slideshow-gallery/
     
    5454   
    5555    $sSql = "select Lrisg_path,Lrisg_link,Lrisg_target,Lrisg_title from ".WP_LRISG_TABLE." where 1=1";
    56     if($Lrisg_type <> ""){ $sSql = $sSql . " and Lrisg_type='".$Lrisg_type."'"; }
     56   
     57    if($Lrisg_type <> ""){
     58        $sSql = $sSql . " and Lrisg_type = %s ";
     59        $sSql = $wpdb->prepare($sSql, $Lrisg_type);
     60    }
     61   
    5762    if($Lrisg_random == "YES"){ $sSql = $sSql . " ORDER BY RAND()"; }else{ $sSql = $sSql . " ORDER BY Lrisg_order"; }
    5863   
     
    206211   
    207212    $sSql = "select Lrisg_path,Lrisg_link,Lrisg_target,Lrisg_title from ".WP_LRISG_TABLE." where 1=1";
    208     if($Lrisg_type <> ""){ $sSql = $sSql . " and Lrisg_type='".$Lrisg_type."'"; }
     213   
     214    if($Lrisg_type <> ""){
     215        $sSql = $sSql . " and Lrisg_type = %s ";
     216        $sSql = $wpdb->prepare($sSql, $Lrisg_type);
     217    }
     218   
    209219    if($Lrisg_random == "YES"){ $sSql = $sSql . " ORDER BY RAND()"; }else{ $sSql = $sSql . " ORDER BY Lrisg_order"; }
    210220   
  • left-right-image-slideshow-gallery/trunk/readme.txt

    r2827127 r2985417  
    66Tags:  image, slideshow, gallery
    77Requires at least: 3.4
    8 Tested up to: 6.1
    9 Stable tag: 12.0
     8Tested up to: 6.4
     9Stable tag: 12.1
    1010License: GPLv2 or later
    1111License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    8383== Upgrade Notice ==
    8484
     85= 12.1 =
     86
     871. Tested up to 6.4
     88
    8589= 12.0 =
    8690
     
    229233== Changelog ==
    230234
     235= 12.1 =
     236
     2371. Tested up to 6.4
     238
    231239= 12.0 =
    232240
Note: See TracChangeset for help on using the changeset viewer.