X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=include%2Fdba.php;h=881097f30c399598e3d6fc4f95739c8ec9b4c2bf;hb=88e7fe67de734035ec35621dd0dc4b29807e8ed6;hp=20c08c2dd0d2e0d39bbc49628f4dc7182214bdff;hpb=68757f25042b02624bfb748c25029023b3082f62;p=friendica.git diff --git a/include/dba.php b/include/dba.php index 20c08c2dd0..881097f30c 100644 --- a/include/dba.php +++ b/include/dba.php @@ -77,16 +77,16 @@ class dba { $this->error = ''; - if (get_config("system", "db_log") != "") - @file_put_contents(get_config("system", "db_log"), datetime_convert().':'.session_id(). ' Start '.$sql."\n", FILE_APPEND); + //if (get_config("system", "db_log") != "") + // @file_put_contents(get_config("system", "db_log"), datetime_convert().':'.session_id(). ' Start '.$sql."\n", FILE_APPEND); if($this->mysqli) $result = @$this->db->query($sql); else $result = @mysql_query($sql,$this->db); - if (get_config("system", "db_log") != "") - @file_put_contents(get_config("system", "db_log"), datetime_convert().':'.session_id(). ' Stop '."\n", FILE_APPEND); + //if (get_config("system", "db_log") != "") + // @file_put_contents(get_config("system", "db_log"), datetime_convert().':'.session_id(). ' Stop '."\n", FILE_APPEND); if($this->mysqli) { if($this->db->errno)