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
1 changed files with 5 additions and 1 deletions

View File

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