> BBEdit says no BOM, just "text file". You can see what I'm trying to do
> '*here*'
> (https://github.com/AF-1/lms-ratingsl...lugin.pm#L1952).
Instead of
FileHandle->new($filename, ">>")
use
FileHandle->new($filename, ">>:utf8")
....or similar. Check out the documentation for perl's "open" operation.
> '*here*'
> (https://github.com/AF-1/lms-ratingsl...lugin.pm#L1952).
Instead of
FileHandle->new($filename, ">>")
use
FileHandle->new($filename, ">>:utf8")
....or similar. Check out the documentation for perl's "open" operation.