Changeset 11896


Ignore:
Timestamp:
2006-05-31T16:36:27+12:00 (18 years ago)
Author:
kjdon
Message:

fixed line 521 - matching on a windows path gives an error like can't find unicode character property, because it has \Pr in it. so changes the match to an eq

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/perllib/docsave.pm

    r11660 r11896  
    519519
    520520        if ($save_as eq "DSpace") {
    521         if ($real_filename =~ m/$source_filename$/) {
     521        if ($real_filename eq $source_filename) {
    522522            next;
    523523        }
Note: See TracChangeset for help on using the changeset viewer.