mirror of
https://github.com/tag1consulting/d7_to_d10_migration.git
synced 2025-09-06 09:01:23 +00:00
Update Drupal 7 dependencies
This commit is contained in:
parent
7d902ba1ef
commit
13df912654
391 changed files with 2900 additions and 1502 deletions
|
@ -120,7 +120,15 @@ class InsertQuery_pgsql extends InsertQuery {
|
|||
|
||||
$max_placeholder = 0;
|
||||
$values = array();
|
||||
if (count($this->insertValues)) {
|
||||
if (!is_array($this->insertValues)) {
|
||||
if (version_compare(PHP_VERSION, '7.4', '>=')) {
|
||||
throw new UnexpectedValueException();
|
||||
}
|
||||
else {
|
||||
drupal_trigger_fatal_error('Unexpected Value');
|
||||
}
|
||||
}
|
||||
if (count($this->insertValues)) {
|
||||
foreach ($this->insertValues as $insert_values) {
|
||||
$placeholders = array();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue