diff options
author | Mario <mario@mariovavti.com> | 2024-03-10 13:14:10 +0100 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2024-03-10 13:14:10 +0100 |
commit | 0a730935f52ae33bf6132a1ae522e88a37b0f5e6 (patch) | |
tree | 9289c05cfc63758f884a1d6fb3228e7c2cacf55d /Zotlabs/Lib/Text.php | |
parent | d285da09fe59bf9269c0364964339b0f522b58c3 (diff) | |
download | volse-hubzilla-0a730935f52ae33bf6132a1ae522e88a37b0f5e6.tar.gz volse-hubzilla-0a730935f52ae33bf6132a1ae522e88a37b0f5e6.tar.bz2 volse-hubzilla-0a730935f52ae33bf6132a1ae522e88a37b0f5e6.zip |
remove superfluous ()
Diffstat (limited to 'Zotlabs/Lib/Text.php')
-rw-r--r-- | Zotlabs/Lib/Text.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Lib/Text.php b/Zotlabs/Lib/Text.php index a4dea90b9..f593f9dd6 100644 --- a/Zotlabs/Lib/Text.php +++ b/Zotlabs/Lib/Text.php @@ -18,7 +18,7 @@ class Text { return EMPTY_STR; } - return (htmlspecialchars($string, ENT_COMPAT, 'UTF-8', false)); + return htmlspecialchars($string, ENT_COMPAT, 'UTF-8', false); } } |