Changeset 12034 for extensions
- Timestamp:
- Sep 2, 2011, 1:13:46 PM (13 years ago)
- Location:
- extensions/Icy_Picture_Modify
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/Icy_Picture_Modify/CHANGELOG
r11934 r12034 1 1.1.0 2011-09-02 2 3 - Compatible with Piwigo 2.2.3, 2.2.4 and 2.2.5 (There are code changes 4 in both Piwigo and this plugin. If you are using Piwigo 2.2.5 you must 5 install/upgrade to this version of the plugin.) 6 1 7 1.0.3 2011-08-12 2 8 -
extensions/Icy_Picture_Modify/icy_picture_modify.php
r11934 r12034 332 332 333 333 // tags 334 if (version_compare(PHPWG_VERSION, '2.2.5', '<')) { 335 $q_tag_selection = "tag_id, name AS tag_name"; 336 $q_tags = 'id AS tag_id, name AS tag_name'; 337 } 338 else { 339 $q_tag_selection = "tag_id AS id, name"; 340 $q_tags = 'id, name'; 341 } 342 334 343 $query = ' 335 344 SELECT 336 tag_id, 337 name AS tag_name 345 '.$q_tag_selection.' 338 346 FROM '.IMAGE_TAG_TABLE.' AS it 339 347 JOIN '.TAGS_TABLE.' AS t ON t.id = it.tag_id … … 344 352 $query = ' 345 353 SELECT 346 id AS tag_id, 347 name AS tag_name 354 '.$q_tags.' 348 355 FROM '.TAGS_TABLE.' 349 356 ;'; -
extensions/Icy_Picture_Modify/main.inc.php
r11934 r12034 2 2 /* 3 3 Plugin Name: Icy Modify Picture 4 Version: 1. 0.34 Version: 1.1.0 5 5 Description: Allow users to modify pictures they uploaded 6 6 Plugin URI: http://piwigo.org/ext/extension_view.php?eid=563
Note: See TracChangeset
for help on using the changeset viewer.