bug fix: _execute_duplicate_key_update() in query.class.php
git-svn-id: https://plugins.svn.wordpress.org/sqlite-integration/trunk@746595 b8457f37-d9ea-0310-8a92-e5e31aec5664
This commit is contained in:
parent
e17d3a382a
commit
d8314baf48
|
@ -408,7 +408,7 @@ class PDOSQLiteDriver {
|
|||
return;
|
||||
}
|
||||
// data check
|
||||
if (preg_match('/^\((.*)\)\\s*VALUES\\s*\((.*)\)$/im', $insert_data, $match_1)) {
|
||||
if (preg_match('/^\((.*)\)\\s*VALUES\\s*\((.*)\)$/ims', $insert_data, $match_1)) {
|
||||
$col_array = explode(',', $match_1[1]);
|
||||
$ins_data_array = explode(',', $match_1[2]);
|
||||
foreach ($col_array as $col) {
|
||||
|
|
|
@ -111,6 +111,12 @@
|
|||
"class":"compatible"
|
||||
},
|
||||
|
||||
{
|
||||
"name":"FeedWordPress",
|
||||
"compat":"Checked"
|
||||
"class":"compatible"
|
||||
},
|
||||
|
||||
{
|
||||
"name":"Google Analyticator",
|
||||
"compat":"Checked",
|
||||
|
|
Loading…
Reference in New Issue