Changeset 32640 for extensions


Ignore:
Timestamp:
Nov 10, 2021, 5:12:29 AM (3 years ago)
Author:
SergeD
Message:

version 1.0.24 - see changelog for details

Location:
extensions/GDThumb
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • extensions/GDThumb/changelog.txt

    r32638 r32640  
    1414
    1515http://blog.dragonsoft.us/
    16 Copyright (C) 2009-2014 Serguei Dosyukov
     16Copyright (C) 2009-2021 Serguei Dosyukov
    1717
    18 Compatible: PW 2.6, 2.7, 2.8, 2.9, 2.10, 12.x
     18Compatible: PW 11.x, 12.x
    1919Minimum requirement: PW 2.6.3
    2020
     
    2626
    2727=== Changelog ===
     28version 1.0.24
     29- Removed smarty reference in prefilter function
     30+ Removed compatibility with older versions of PIWIGO. Min required version is now 11.x
     31
    2832version 1.0.23
    2933+ Support for PIWIGO 12 verified
  • extensions/GDThumb/main.inc.php

    r32638 r32640  
    22/*
    33Plugin Name: gdThumb
    4 Version: 1.0.23
     4Version: 1.0.24
    55Description: Apply Masonry style to album or image thumbs
    66Plugin URI: http://piwigo.org/ext/extension_view.php?eid=771
     
    2020// | Plugin constants                                               |
    2121// +-----------------------------------------------------------------------+
    22 define('GDTHUMB_VERSION', '1.0.23');
     22define('GDTHUMB_VERSION', '1.0.24');
    2323define('GDTHUMB_ID',      basename(dirname(__FILE__)));
    2424define('GDTHUMB_PATH' ,   PHPWG_PLUGINS_PATH . GDTHUMB_ID . '/');
     
    158158}
    159159
    160 function GDThumb_prefilter($content, $smarty) {
     160function GDThumb_prefilter($content) {
    161161  $pattern = '#\<div.*?id\="thumbnails".*?\>\{\$THUMBNAILS\}\</div\>#';
    162162  $replacement = '<ul id="thumbnails">{$THUMBNAILS}</ul>';
Note: See TracChangeset for help on using the changeset viewer.