Ignore:
Timestamp:
2008-11-12T12:27:54+13:00 (15 years ago)
Author:
kjdon
Message:

need to use BasePLugin's can_process_this_file cos we want to determine this based on filename not on documenttype which is what ReadXMLFile's one does.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • gsdl/trunk/perllib/plugins/PagedImagePlugin.pm

    r17741 r17822  
    250250    return q^(?i)(\.jpe?g|\.gif|\.png|\.tif?f|\.te?xt|\.html?|~)$^
    251251###    return q^(?i)(\.jpe?g|\.gif|\.png|\.tif?f|\.te?xt|\.html?|\.css|\.opd|\.pdf|~)$^
     252}
     253
     254# want to use BasePlugin's version of this, not ReadXMLFile's
     255sub can_process_this_file {
     256    my $self = shift(@_);
     257   
     258    return $self->BasePlugin::can_process_this_file(@_);
    252259}
    253260
Note: See TracChangeset for help on using the changeset viewer.