also removing BOM from clipboard content

This commit is contained in:
nadrad 2022-09-15 19:55:57 +02:00
parent 3268878831
commit db3ed4a577

2
h-m-m
View file

@ -2024,7 +2024,7 @@ function copy_to_clipboard(&$mm, $text)
function get_from_clipboard(&$mm)
{
return shell_exec($mm['clipboard']['read']);
return str_replace(BOM,'',shell_exec($mm['clipboard']['read']));
}