diff options
author | Michael Vogel <icarus@dabo.de> | 2012-05-26 03:23:18 +0200 |
---|---|---|
committer | Michael Vogel <icarus@dabo.de> | 2012-05-26 03:23:18 +0200 |
commit | a612b10b2a1c2d1afbca1fd2f38ebc35110081dc (patch) | |
tree | e165483de61dbb7a93deeacfe4576d5457722532 | |
parent | 49512105082dde72553f4250e6284920612cc6b8 (diff) | |
download | volse-hubzilla-a612b10b2a1c2d1afbca1fd2f38ebc35110081dc.tar.gz volse-hubzilla-a612b10b2a1c2d1afbca1fd2f38ebc35110081dc.tar.bz2 volse-hubzilla-a612b10b2a1c2d1afbca1fd2f38ebc35110081dc.zip |
Deactivating the test output in db engine
-rw-r--r-- | include/dba.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/dba.php b/include/dba.php index c19d4a8fc..7ecce7270 100644 --- a/include/dba.php +++ b/include/dba.php @@ -77,14 +77,14 @@ class dba { $this->error = ''; - @file_put_contents("/tmp/friendica-db.log", datetime_convert().':'.session_id(). ' Start '.$sql."\n", FILE_APPEND); + //@file_put_contents("/tmp/friendica-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); - @file_put_contents("/tmp/friendica-db.log", datetime_convert().':'.session_id(). ' Stop '."\n", FILE_APPEND); + //@file_put_contents("/tmp/friendica-db.log", datetime_convert().':'.session_id(). ' Stop '."\n", FILE_APPEND); if($this->mysqli) { if($this->db->errno) |