Skip to content

Commit

Permalink
Item13482: multibyte fix required to prevent wide-byte error
Browse files Browse the repository at this point in the history
  • Loading branch information
Crawford Currie committed Jun 29, 2015
1 parent 42c65c4 commit 8512288
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/lib/Foswiki/UI.pm
Expand Up @@ -221,7 +221,7 @@ sub handleRequest {

if ( $dispatcher->{package} && !$isInitialized{ $dispatcher->{package} } ) {
eval qq(use $dispatcher->{package});
die $@ if $@;
die Foswiki::encode_utf8($@) if $@;
$isInitialized{ $dispatcher->{package} } = 1;
}

Expand Down

0 comments on commit 8512288

Please sign in to comment.