29
0
mirror of https://github.com/joomla/joomla-cms.git synced 2024-06-28 16:13:42 +00:00

Update Database package

This commit is contained in:
wilsonge 2017-07-07 11:59:02 +01:00
parent dc51594873
commit dfe84ffe11
No known key found for this signature in database
GPG Key ID: EF81319318FC9D04
3 changed files with 13 additions and 12 deletions

14
composer.lock generated
View File

@ -280,7 +280,7 @@
"framework",
"joomla"
],
"time": "2017-06-20 02:25:07"
"time": "2017-06-20T02:25:07+00:00"
},
{
"name": "joomla/compat",
@ -465,7 +465,7 @@
"framework",
"joomla"
],
"time": "2017-06-23 02:45:48"
"time": "2017-06-23T02:45:48+00:00"
},
{
"name": "joomla/database",
@ -473,12 +473,12 @@
"source": {
"type": "git",
"url": "https://github.com/joomla-framework/database.git",
"reference": "a6432c6f30a14f275b871373b5e7a8e0c1388b9d"
"reference": "bcda1f013a83159b2aa083ff2d25f3ec55978dcf"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/joomla-framework/database/zipball/a6432c6f30a14f275b871373b5e7a8e0c1388b9d",
"reference": "a6432c6f30a14f275b871373b5e7a8e0c1388b9d",
"url": "https://api.github.com/repos/joomla-framework/database/zipball/bcda1f013a83159b2aa083ff2d25f3ec55978dcf",
"reference": "bcda1f013a83159b2aa083ff2d25f3ec55978dcf",
"shasum": ""
},
"require": {
@ -524,7 +524,7 @@
"framework",
"joomla"
],
"time": "2017-06-28T23:24:47+00:00"
"time": "2017-07-07T10:57:45+00:00"
},
{
"name": "joomla/di",
@ -1010,7 +1010,7 @@
"joomla",
"registry"
],
"time": "2017-05-27 01:17:43"
"time": "2017-05-27T01:17:43+00:00"
},
{
"name": "joomla/session",

View File

@ -1084,12 +1084,12 @@
"source": {
"type": "git",
"url": "https://github.com/joomla-framework/database.git",
"reference": "a6432c6f30a14f275b871373b5e7a8e0c1388b9d"
"reference": "bcda1f013a83159b2aa083ff2d25f3ec55978dcf"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/joomla-framework/database/zipball/a6432c6f30a14f275b871373b5e7a8e0c1388b9d",
"reference": "a6432c6f30a14f275b871373b5e7a8e0c1388b9d",
"url": "https://api.github.com/repos/joomla-framework/database/zipball/bcda1f013a83159b2aa083ff2d25f3ec55978dcf",
"reference": "bcda1f013a83159b2aa083ff2d25f3ec55978dcf",
"shasum": ""
},
"require": {
@ -1113,7 +1113,7 @@
"joomla/di": "To use the Database ServiceProviderInterface objects, install joomla/di.",
"joomla/registry": "To use the Database ServiceProviderInterface objects, install joomla/registry."
},
"time": "2017-06-28T23:24:47+00:00",
"time": "2017-07-07T10:57:45+00:00",
"type": "joomla-package",
"extra": {
"branch-alias": {

View File

@ -346,7 +346,8 @@ class MysqliDriver extends DatabaseDriver implements UTF8MB4SupportInterface
*/
public static function isSupported()
{
return function_exists('mysqli_connect');
// At the moment we depend on mysqlnd extension, so we additionally test for mysqli_stmt_get_result
return function_exists('mysqli_connect') && function_exists('mysqli_stmt_get_result');
}
/**