Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
taufik-nurrohman committed Mar 19, 2024
1 parent e1f008e commit 34477a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion from.php
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ function t($value, $array, $lot, $tag) {
if (0 === \strpos($tag, '!!')) {
$tag = \substr($tag, 2);
if ('binary' === $tag) {
return \base64_decode(\trim(\preg_replace('/\s+/', "", $value ?? 'AA==')));
return \base64_decode(\preg_replace('/\s+/', "", \trim($value ?? 'AA==')));
}
if ('bool' === $tag) {
return (bool) $value;
Expand Down

0 comments on commit 34477a8

Please sign in to comment.