aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2024-03-10 13:14:10 +0100
committerMario <mario@mariovavti.com>2024-03-10 13:14:10 +0100
commit0a730935f52ae33bf6132a1ae522e88a37b0f5e6 (patch)
tree9289c05cfc63758f884a1d6fb3228e7c2cacf55d /Zotlabs
parentd285da09fe59bf9269c0364964339b0f522b58c3 (diff)
downloadvolse-hubzilla-0a730935f52ae33bf6132a1ae522e88a37b0f5e6.tar.gz
volse-hubzilla-0a730935f52ae33bf6132a1ae522e88a37b0f5e6.tar.bz2
volse-hubzilla-0a730935f52ae33bf6132a1ae522e88a37b0f5e6.zip
remove superfluous ()
Diffstat (limited to 'Zotlabs')
-rw-r--r--Zotlabs/Lib/Text.php2
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);
}
}