Skip to content

Commit df8a43f

Browse files
committed
Object names cannot contact special characters
1 parent 8cf71f5 commit df8a43f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web-lib-funcs.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7307,7 +7307,7 @@ sub unserialise_variable
73077307
elsif ($v[0] eq 'UNDEF') {
73087308
$rv = undef;
73097309
}
7310-
elsif ($v[0] =~ /^OBJECT\s+(.*)$/) {
7310+
elsif ($v[0] =~ /^OBJECT\s+([A-Za-z0-9_:]+)$/) {
73117311
# An object hash that we have to re-bless
73127312
my $cls = $1;
73137313
$rv = { };

0 commit comments

Comments
 (0)