Changeset 1873616
- Timestamp:
- 05/13/2018 08:25:42 PM (8 years ago)
- Location:
- file-gallery/trunk
- Files:
-
- 3 edited
-
file-gallery.php (modified) (1 diff)
-
includes/main.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
file-gallery/trunk/file-gallery.php
r1381420 r1873616 3 3 Plugin Name: File Gallery 4 4 Plugin URI: http://skyphe.org/code/wordpress/file-gallery/ 5 Version: 1.8.5. 25 Version: 1.8.5.3 6 6 Description: "File Gallery" extends WordPress' media (attachments) capabilities by adding a new gallery shortcode handler with templating support, a new interface for attachment handling when editing posts, and much more. 7 7 Author: Bruno "Aesqe" Babic -
file-gallery/trunk/includes/main.php
r1059204 r1873616 352 352 $action = isset($_POST['action']) ? $_POST['action'] : ''; 353 353 $attachment_ids = isset($_POST['attachment_ids']) ? $_POST['attachment_ids'] : ''; 354 $attachment_data = isset($_POST['attachment_data']) ? $_POST['attachment_data'] : '';354 $attachment_data = isset($_POST['attachment_data']) ? $_POST['attachment_data'] : array(); 355 355 $delete_what = isset($_POST['delete_what']) ? $_POST['delete_what'] : ''; 356 356 $checked_attachments = isset($_POST['checked_attachments']) ? explode(',', $_POST['checked_attachments']) : array(); -
file-gallery/trunk/readme.txt
r1381420 r1873616 4 4 Tags: attachment, attachments, gallery, galleries, template, templates, shortcode, file, files, attach, detach, unattach, copy, media, tags, library, custom, custom fields, custom fields for attachments, attachment custom fields, drag drop upload 5 5 Requires at least: 4.0 6 Tested up to: 4. 4.27 Stable tag: 1.8.5. 26 Tested up to: 4.9.5 7 Stable tag: 1.8.5.3 8 8 9 9 File Gallery extends WordPress media (attachments) capabilities … … 170 170 171 171 == Changelog == 172 173 = 1.8.5.3. = 174 * May 13th, 2016. 175 * bugfix: set default attachment data type to array instead 176 of string (thanks Li-An!) 172 177 173 178 = 1.8.5.2. =
Note: See TracChangeset
for help on using the changeset viewer.