summaryrefslogtreecommitdiff
path: root/include/db.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-03-21 21:42:11 +0400
committerAndrew Dolgov <[email protected]>2013-03-21 21:42:11 +0400
commit029591964885e4a9010838cd9ae9824267dc63fc (patch)
tree23209632538f30e087dd968912e4e9e790ef7b73 /include/db.php
parentd4a5129a24d00efb773bbf4f7e39cd53072aaa46 (diff)
attempt fix db_escape_string() invocation in sessions.php
Diffstat (limited to 'include/db.php')
-rw-r--r--include/db.php10
1 files changed, 7 insertions, 3 deletions
diff --git a/include/db.php b/include/db.php
index f1a7af363..17437142b 100644
--- a/include/db.php
+++ b/include/db.php
@@ -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);
}
}