From: Michael Date: Wed, 16 Nov 2016 06:29:30 +0000 (+0000) Subject: Removed commented code X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=b1999459afe1f955e7373f4b4894b44324b10e1e;p=friendica.git Removed commented code --- diff --git a/include/dba.php b/include/dba.php index 7ca520712a..082a54bd49 100644 --- a/include/dba.php +++ b/include/dba.php @@ -65,7 +65,6 @@ class dba { $this->db = @new mysqli($server,$user,$pass,$db); if (! mysqli_connect_errno()) { $this->connected = true; - //mysqli_set_charset($this->db, 'utf8'); } if (isset($a->config["system"]["db_charset"])) { $this->db->set_charset($a->config["system"]["db_charset"]); @@ -75,7 +74,6 @@ class dba { $this->db = mysql_connect($server,$user,$pass); if ($this->db && mysql_select_db($db,$this->db)) { $this->connected = true; - //mysql_set_charset('utf8', $this->db); } if (isset($a->config["system"]["db_charset"])) mysql_set_charset($a->config["system"]["db_charset"], $this->db);