Skip to content
Snippets Groups Projects
Commit 5b25ebc0 authored by James Allen's avatar James Allen
Browse files

Retain the backslash on escaped single quotes when generating a hash from a flattened string.

parent a4ac8006
No related branches found
No related tags found
2 merge requests!129Retain the backslash on escaped single quotes when generating a hash from a flattened string.,!129Retain the backslash on escaped single quotes when generating a hash from a flattened string.
......@@ -1109,7 +1109,7 @@ sub get_dumped_data {
my $self = shift;
my $data = shift;
$data =~ s/\n|\r|\f|\\//g;
$data =~ s/\n|\r|\f|(\\\\)//g;
return eval ($data); ## no critic
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment