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

db: disable qlog

This commit is contained in:
Andrew Dolgov
2011-11-11 13:09:11 +04:00
parent c0644ee424
commit 68c48b7d48

6
db.php
View File

@@ -52,9 +52,9 @@ function db_escape_string($s, $strip_tags = true) {
}
function db_query($link, $query, $die_on_error = true) {
if ($_REQUEST["qlog"])
error_log($_SESSION["uid"] . ":" . $_REQUEST["op"] . "/" . $_REQUEST["subop"] .
" $query\n", 3, "/tmp/ttrss-query.log");
//if ($_REQUEST["qlog"])
// error_log($_SESSION["uid"] . ":" . $_REQUEST["op"] . "/" . $_REQUEST["subop"] .
// " $query\n", 3, "/tmp/ttrss-query.log");
if (DB_TYPE == "pgsql") {
$result = pg_query($link, $query);