From a test.ipl
print "START\n";
my $temp = "c¨¦l¨¨brate";
print "BEFORE: $temp\n";
$temp =~ s/\W/_/g;
print "AFTER: $temp\n";
I get
START
BEFORE: c¦¨l¦µbrate
AFTER: c_l_brate
But with the same code from a call from within a tpl to a PM I get
in a log
START
BEFORE: c¨¦l¨¨brate
AFTER: c¨¦l¨¨brate
Anyone know why? and how I can fix it?
Thanks in advance!
win2k3 TS 6.5 sp1; OD 6.0.1; DD enabled
The Professor-