Skip to content

Commit

Permalink
Expanded fix for Issue #40 dealing with a double-quote
Browse files Browse the repository at this point in the history
  • Loading branch information
photomedia committed Feb 25, 2022
1 parent 28fef23 commit 9db4cc0
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/plugins/EPrints/Plugin/Export/Archivematica/EPrint.pm
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ sub output_dataobj
# and copy the file into the new file dir
my $filename = $file->get_value( "filename" );
$filename =~ s/\x27/=0027/g;
$filename =~ s/\x22/=0022/g;
my $local_path = $doc->local_path . "/" . $filename;

my $h = $file->get_value( 'hash' );
Expand Down

0 comments on commit 9db4cc0

Please sign in to comment.