From 8080ee456541fe3444695f8dbc469d05ebce51f6 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Sun, 22 Jul 2012 16:57:15 +0200 Subject: [PATCH] Fix: dol_syslog at wrong place. --- htdocs/core/db/mysqli.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/core/db/mysqli.class.php b/htdocs/core/db/mysqli.class.php index 8d19617555f..db2a4481422 100644 --- a/htdocs/core/db/mysqli.class.php +++ b/htdocs/core/db/mysqli.class.php @@ -803,8 +803,8 @@ class DoliDBMysqli { // We try again for compatibility with Mysql < 4.1.1 $sql = 'CREATE DATABASE '.$database; - $ret=$this->query($sql); dol_syslog($sql,LOG_DEBUG); + $ret=$this->query($sql); } return $ret; }