Changeset 32640 for extensions
- Timestamp:
- Nov 10, 2021, 5:12:29 AM (3 years ago)
- Location:
- extensions/GDThumb
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/GDThumb/changelog.txt
r32638 r32640 14 14 15 15 http://blog.dragonsoft.us/ 16 Copyright (C) 2009-20 14Serguei Dosyukov16 Copyright (C) 2009-2021 Serguei Dosyukov 17 17 18 Compatible: PW 2.6, 2.7, 2.8, 2.9, 2.10, 12.x18 Compatible: PW 11.x, 12.x 19 19 Minimum requirement: PW 2.6.3 20 20 … … 26 26 27 27 === Changelog === 28 version 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 28 32 version 1.0.23 29 33 + Support for PIWIGO 12 verified -
extensions/GDThumb/main.inc.php
r32638 r32640 2 2 /* 3 3 Plugin Name: gdThumb 4 Version: 1.0.2 34 Version: 1.0.24 5 5 Description: Apply Masonry style to album or image thumbs 6 6 Plugin URI: http://piwigo.org/ext/extension_view.php?eid=771 … … 20 20 // | Plugin constants | 21 21 // +-----------------------------------------------------------------------+ 22 define('GDTHUMB_VERSION', '1.0.2 3');22 define('GDTHUMB_VERSION', '1.0.24'); 23 23 define('GDTHUMB_ID', basename(dirname(__FILE__))); 24 24 define('GDTHUMB_PATH' , PHPWG_PLUGINS_PATH . GDTHUMB_ID . '/'); … … 158 158 } 159 159 160 function GDThumb_prefilter($content , $smarty) {160 function GDThumb_prefilter($content) { 161 161 $pattern = '#\<div.*?id\="thumbnails".*?\>\{\$THUMBNAILS\}\</div\>#'; 162 162 $replacement = '<ul id="thumbnails">{$THUMBNAILS}</ul>';
Note: See TracChangeset
for help on using the changeset viewer.