Changeset 3531 for trunk/lib/MT/Asset/Image.pm
- Timestamp:
- 03/12/09 09:11:52 (9 months ago)
- Files:
-
- 1 modified
-
trunk/lib/MT/Asset/Image.pm (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/MT/Asset/Image.pm
r3082 r3531 1 # Movable Type (r) Open Source (C) 2001-200 8Six Apart, Ltd.1 # Movable Type (r) Open Source (C) 2001-2009 Six Apart, Ltd. 2 2 # This program is distributed under the terms of the 3 3 # GNU General Public License, version 2. … … 19 19 20 20 # List of supported file extensions (to aid the stock 'can_handle' method.) 21 sub extensions { [ qr/gif/i, qr/jpe?g/i, qr/png/i, ] } 21 sub extensions { 22 my $pkg = shift; 23 return $pkg->SUPER::extensions( [ qr/gif/i, qr/jpe?g/i, qr/png/i, ] ); 24 } 22 25 23 26 sub class_label {
