Changeset 2463752
- Timestamp:
- 01/27/2021 05:45:46 PM (5 years ago)
- Location:
- slideshow-ck/trunk
- Files:
-
- 3 edited
-
helpers/ckpath.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
slideshow-ck.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
slideshow-ck/trunk/helpers/ckpath.php
r1966812 r2463752 143 143 { 144 144 // Read 145 $parsed_mode .= ($mode {$i}& 04) ? "r" : "-";145 $parsed_mode .= ($mode[$i] & 04) ? "r" : "-"; 146 146 147 147 // Write 148 $parsed_mode .= ($mode {$i}& 02) ? "w" : "-";148 $parsed_mode .= ($mode[$i] & 02) ? "w" : "-"; 149 149 150 150 // Execute 151 $parsed_mode .= ($mode {$i}& 01) ? "x" : "-";151 $parsed_mode .= ($mode[$i] & 01) ? "x" : "-"; 152 152 } 153 153 -
slideshow-ck/trunk/readme.txt
r2456804 r2463752 4 4 Requires at least: 4.0 5 5 Tested up to: 5.6 6 Stable tag: 1.4. 76 Stable tag: 1.4.8 7 7 License: GPLv2 or later 8 8 … … 55 55 == Changelog == 56 56 57 = 1.4.8 - 27 january 2021 = 58 * Add compatibility with PHP 8 59 57 60 = 1.4.7 - 15 january 2021 = 58 61 * Fix issue with DIVI editor -
slideshow-ck/trunk/slideshow-ck.php
r2456804 r2463752 4 4 * Plugin URI: https://www.ceikay.com/plugins/slideshow-ck 5 5 * Description: Slideshow CK is a responsive slideshow plugin that show your images with nice effects. 6 * Version: 1.4. 76 * Version: 1.4.8 7 7 * Author: Cédric KEIFLIN 8 8 * Author URI: https://www.ceikay.com/
Note: See TracChangeset
for help on using the changeset viewer.