1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-16 01:45:56 +00:00

fix #2 for mysql escape string

This commit is contained in:
Andrew Dolgov
2013-03-21 21:45:00 +04:00
parent 0295919648
commit 82ac531154

View File

@@ -51,7 +51,11 @@ function db_escape_string($s, $strip_tags = true, $link = NULL) {
return pg_escape_string($s);
}
} else {
return mysql_real_escape_string($s, $link);
if ($link) {
return mysql_real_escape_string($s, $link);
} else {
return mysql_real_escape_string($s);
}
}
}