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:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user