Plugin Directory

Changeset 2463752


Ignore:
Timestamp:
01/27/2021 05:45:46 PM (5 years ago)
Author:
ced1870
Message:

1.4.8

Location:
slideshow-ck/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • slideshow-ck/trunk/helpers/ckpath.php

    r1966812 r2463752  
    143143        {
    144144            // Read
    145             $parsed_mode .= ($mode{$i} & 04) ? "r" : "-";
     145            $parsed_mode .= ($mode[$i] & 04) ? "r" : "-";
    146146
    147147            // Write
    148             $parsed_mode .= ($mode{$i} & 02) ? "w" : "-";
     148            $parsed_mode .= ($mode[$i] & 02) ? "w" : "-";
    149149
    150150            // Execute
    151             $parsed_mode .= ($mode{$i} & 01) ? "x" : "-";
     151            $parsed_mode .= ($mode[$i] & 01) ? "x" : "-";
    152152        }
    153153
  • slideshow-ck/trunk/readme.txt

    r2456804 r2463752  
    44Requires at least: 4.0
    55Tested up to: 5.6
    6 Stable tag: 1.4.7
     6Stable tag: 1.4.8
    77License: GPLv2 or later
    88
     
    5555== Changelog ==
    5656
     57= 1.4.8 - 27 january 2021 =
     58* Add compatibility with PHP 8
     59
    5760= 1.4.7 - 15 january 2021 =
    5861* Fix issue with DIVI editor
  • slideshow-ck/trunk/slideshow-ck.php

    r2456804 r2463752  
    44 * Plugin URI: https://www.ceikay.com/plugins/slideshow-ck
    55 * Description: Slideshow CK is a responsive slideshow plugin that show your images with nice effects.
    6  * Version: 1.4.7
     6 * Version: 1.4.8
    77 * Author: Cédric KEIFLIN
    88 * Author URI: https://www.ceikay.com/
Note: See TracChangeset for help on using the changeset viewer.