summaryrefslogtreecommitdiff
path: root/include/db.php
diff options
context:
space:
mode:
Diffstat (limited to 'include/db.php')
-rw-r--r--include/db.php8
1 files changed, 5 insertions, 3 deletions
diff --git a/include/db.php b/include/db.php
index 7b2bd2a77..4e821105a 100644
--- a/include/db.php
+++ b/include/db.php
@@ -52,9 +52,11 @@ 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["method"] .
- // " $query\n", 3, "/tmp/ttrss-query.log");
+ if ($_REQUEST["qlog"] || defined('QUERY_LOG')) {
+ $query = trim($query);
+ error_log($_SESSION["uid"] . ":" . $_REQUEST["op"] . "/" . $_REQUEST["method"] .
+ " $query\n", 3, "/tmp/ttrss-query.log");
+ }
if (DB_TYPE == "pgsql") {
$result = pg_query($link, $query);