diff options
author | Dries Buytaert <dries@buytaert.net> | 2007-12-31 08:54:37 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2007-12-31 08:54:37 +0000 |
commit | 178c28535b5ed1a693c9e9cf5de4c703bc2bf3c6 (patch) | |
tree | e0a029015f481bd2ce1a85b3b73396244d91caf1 /includes/database.mysql.inc | |
parent | f04d4d17dd6a7c94bf10b564930a4448d5449c3d (diff) | |
download | brdo-178c28535b5ed1a693c9e9cf5de4c703bc2bf3c6.tar.gz brdo-178c28535b5ed1a693c9e9cf5de4c703bc2bf3c6.tar.bz2 |
- Patch #204900 by webernet: code style fixes. Likely my last patch of the year. Fiew. Thanks all, and see you on the other side. :)
Diffstat (limited to 'includes/database.mysql.inc')
-rw-r--r-- | includes/database.mysql.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/database.mysql.inc b/includes/database.mysql.inc index 2bb105161..a20486996 100644 --- a/includes/database.mysql.inc +++ b/includes/database.mysql.inc @@ -85,7 +85,7 @@ function db_connect($url) { _db_error_page(mysql_error()); } - /* On MySQL 4.1 and later, force UTF-8 */ + // On MySQL 4.1 and later, force UTF-8. if (version_compare(mysql_get_server_info(), '4.1.0', '>=')) { mysql_query('SET NAMES "utf8"', $connection); } |