This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
friendica
/
friendica
mirror of
https://github.com/friendica/friendica.git
Watch
1
Star
2
Fork
1
Code
Issues
Releases
49
Wiki
Activity
Browse Source
fix single quotes
pull/438/head
friendica
8 years ago
parent
b8df47e97c
commit
e802c81ec1
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
include/text.php
+ 1
- 1
include/text.php
View File
@ -70,7 +70,7 @@ function notags($string) {
if
(
!
function_exists
(
'escape_tags'
))
{
function
escape_tags
(
$string
)
{
return
(
htmlspecialchars
(
$string
,
ENT_
QUOTES
,
'UTF-8'
,
false
));
return
(
htmlspecialchars
(
$string
,
ENT_
COMPAT
,
'UTF-8'
,
false
));
}}
Write
Preview
Loading…
Cancel
Save