[geeklog-cvs] Geeklog-1.x/system/databases mysql.class.php, 1.27, 1.28

Dirk Haun dhaun at qs1489.pair.com
Thu Sep 11 15:07:48 EDT 2008


Update of /cvsroot/geeklog/Geeklog-1.x/system/databases
In directory qs1489.pair.com:/tmp/cvs-serv42555/system/databases

Modified Files:
	mysql.class.php 
Log Message:
Fixed problem with the MySQL class not recognizing UTF-8 when the character set name was written in uppercase (bug #0000731)


Index: mysql.class.php
===================================================================
RCS file: /cvsroot/geeklog/Geeklog-1.x/system/databases/mysql.class.php,v
retrieving revision 1.27
retrieving revision 1.28
diff -C2 -d -r1.27 -r1.28
*** mysql.class.php	25 Nov 2007 06:59:56 -0000	1.27
--- mysql.class.php	11 Sep 2008 19:07:42 -0000	1.28
***************
*** 3,7 ****
  /* Reminder: always indent with 4 spaces (no tabs). */
  // +---------------------------------------------------------------------------+
! // | Geeklog 1.4                                                               |
  // +---------------------------------------------------------------------------+
  // | mysql.class.php                                                           |
--- 3,7 ----
  /* Reminder: always indent with 4 spaces (no tabs). */
  // +---------------------------------------------------------------------------+
! // | Geeklog 1.5                                                               |
  // +---------------------------------------------------------------------------+
  // | mysql.class.php                                                           |
***************
*** 9,13 ****
  // | mysql database class                                                      |
  // +---------------------------------------------------------------------------+
! // | Copyright (C) 2000-2006 by the following authors:                         |
  // |                                                                           |
  // | Authors: Tony Bibbs, tony AT tonybibbs DOT com                            |
--- 9,13 ----
  // | mysql database class                                                      |
  // +---------------------------------------------------------------------------+
! // | Copyright (C) 2000-2008 by the following authors:                         |
  // |                                                                           |
  // | Authors: Tony Bibbs, tony AT tonybibbs DOT com                            |
***************
*** 174,178 ****
          $this->_verbose = false;
          $this->_errorlog_fn = $errorlogfn;
!         $this->_charset = $charset;
          $this->_mysql_version = 0;
  
--- 174,178 ----
          $this->_verbose = false;
          $this->_errorlog_fn = $errorlogfn;
!         $this->_charset = strtolower($charset);
          $this->_mysql_version = 0;
  




More information about the geeklog-cvs mailing list