Plugin Directory

Changeset 483385


Ignore:
Timestamp:
01/02/2012 01:29:06 PM (14 years ago)
Author:
aesqe
Message:

1.7.3

  • January 2nd, 2012
  • correct display of non-image icons (wrong variable order in apply_filters())
Location:
file-gallery
Files:
128 added
3 edited

Legend:

Unmodified
Added
Removed
  • file-gallery/trunk/file-gallery.php

    r483083 r483385  
    33Plugin Name: File Gallery
    44Plugin URI: http://skyphe.org/code/wordpress/file-gallery/
    5 Version: 1.7.2
     5Version: 1.7.3
    66Description: "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.
    77Author: Bruno "Aesqe" Babic
     
    3232 */
    3333
    34 define('FILE_GALLERY_VERSION', '1.7.2');
     34define('FILE_GALLERY_VERSION', '1.7.3');
    3535define('FILE_GALLERY_DEFAULT_TEMPLATES', serialize( array('default', 'file-gallery', 'list', 'simple') ) );
    3636
  • file-gallery/trunk/includes/mime-types.php

    r483083 r483385  
    9595    }
    9696   
    97     return apply_filters('file_gallery_get_file_type', $mime, $type);
     97    return apply_filters('file_gallery_get_file_type', $type, $mime);
    9898}
    9999
  • file-gallery/trunk/readme.txt

    r483083 r483385  
    55Requires at least: 3.1
    66Tested up to: 3.4-alpha-19620
    7 Stable tag: 1.7.2
     7Stable tag: 1.7.3
    88
    99File Gallery extends WordPress media (attachments) capabilities
     
    119119
    120120== Changelog ==
     121
     122= 1.7.3 =
     123* January 2nd, 2012
     124* correct display of non-image icons
     125  (wrong variable order in apply_filters())
    121126
    122127= 1.7.2 =
Note: See TracChangeset for help on using the changeset viewer.