From 5d825e334ae800dcae473034a825dc7d8d9945e8 Mon Sep 17 00:00:00 2001 From: Luca Date: Wed, 10 Apr 2019 15:28:00 +0200 Subject: [PATCH] =?UTF-8?q?Fix=20per=20compatibilit=C3=A0=20con=20MySQL=20?= =?UTF-8?q?8.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Database.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Database.php b/src/Database.php index 66e912733..a508872e1 100644 --- a/src/Database.php +++ b/src/Database.php @@ -76,7 +76,7 @@ class Database extends Util\Singleton } // Fix per problemi di compatibilità delle password MySQL 4.1+ (da versione precedente) - $this->getPDO()->exec('SET SESSION old_passwords = 0'); + //$this->getPDO()->exec('SET SESSION old_passwords = 0'); //$this->getPDO()->exec('SET PASSWORD = PASSWORD('.$this->prepare($this->password).')'); // Reset della modalità di esecuzione MySQL per la sessione corrente