- utf-8 convert was not meant to make it into 0.9.x, fixes #9

This commit is contained in:
Michael Kaufmann (d00p)
2010-02-13 19:48:16 +00:00
parent 78ae0e2f56
commit 432f555e37
3 changed files with 7 additions and 4 deletions

View File

@@ -134,8 +134,11 @@ class db
$this->showerror('Trying to use database ' . $this->database . ' failed, exiting');
}
}
mysql_query("SET NAMES utf8", $this->link_id);
mysql_query("SET CHARACTER SET utf8", $this->link_id);
/*
* this is not for 0.9.x
*/
//mysql_query("SET NAMES utf8", $this->link_id);
//mysql_query("SET CHARACTER SET utf8", $this->link_id);
}
/**