1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 19:05:55 +00:00

attempt fix db_escape_string() invocation in sessions.php

This commit is contained in:
Andrew Dolgov
2013-03-21 21:42:11 +04:00
parent d4a5129a24
commit 0295919648
2 changed files with 8 additions and 4 deletions

View File

@@ -41,13 +41,17 @@ function db_connect($host, $user, $pass, $db) {
}
}
function db_escape_string($s, $strip_tags = true) {
function db_escape_string($s, $strip_tags = true, $link = NULL) {
if ($strip_tags) $s = strip_tags($s);
if (DB_TYPE == "pgsql") {
return pg_escape_string($s);
if ($link) {
return pg_escape_string($link, $s);
} else {
return pg_escape_string($s);
}
} else {
return mysql_real_escape_string($s);
return mysql_real_escape_string($s, $link);
}
}