Changeset 3565:7b120898d2bd for inc
- Timestamp:
- 07/27/17 17:24:16 (8 years ago)
- Branch:
- default
- Location:
- inc
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
inc/config.php.in
r3533 r3565 12 12 if (!defined('DC_RC_PATH')) { return; } 13 13 14 // Database driver (mysql (deprecated, disabled in PHP7), mysqli, pgsql, sqlite)14 // Database driver (mysql (deprecated, disabled in PHP7), mysqli, mysqlimb4 (full UTF-8), pgsql, sqlite) 15 15 define('DC_DBDRIVER',''); 16 16 -
inc/core/class.dc.blog.php
r3423 r3565 694 694 if (!$rs->isEmpty()) 695 695 { 696 if ($this->con->driver() == 'mysql' || $this->con->driver() == 'mysqli' ) {696 if ($this->con->driver() == 'mysql' || $this->con->driver() == 'mysqli' || $this->con->driver() == 'mysqlimb4') { 697 697 $clause = "REGEXP '^".$this->con->escape($url)."[0-9]+$'"; 698 698 } elseif ($this->con->driver() == 'pgsql') { … … 1939 1939 if (!$rs->isEmpty()) 1940 1940 { 1941 if ($this->con->driver() == 'mysql' || $this->con->driver() == 'mysqli' ) {1941 if ($this->con->driver() == 'mysql' || $this->con->driver() == 'mysqli' || $this->con->driver() == 'mysqlimb4') { 1942 1942 $clause = "REGEXP '^".$this->con->escape($url)."[0-9]+$'"; 1943 1943 } elseif ($this->con->driver() == 'pgsql') { -
inc/core/class.dc.core.php
r3402 r3565 72 72 } elseif ($this->con instanceof mysqliConnection) { 73 73 mysqliConnection::$weak_locks = true; 74 } elseif ($this->con instanceof mysqlimb4Connection) { 75 mysqlimb4Connection::$weak_locks = true; 74 76 } 75 77
Note: See TracChangeset
for help on using the changeset viewer.