# This patch file was generated by NetBeans IDE
# This patch can be applied using context Tools: Apply Diff Patch action on respective folder.
# It uses platform neutral UTF-8 encoding.
# Above lines and this line are ignored by the patching process.
old
|
new
|
|
1559 | 1559 | /** |
1560 | 1560 | * Filter the dbDelta queries. |
1561 | 1561 | * |
1562 | | * Apply filters to dbDelta queries that are run for upgrade. |
| 1562 | * Filter the dbDelta queries that will be run for table creation or updating. |
1563 | 1563 | * |
1564 | 1564 | * @since 3.3.0 |
1565 | 1565 | * |
1566 | | * @param array $queries { |
1567 | | * Array of queries to be applied to database during upgrade. |
1568 | | * |
1569 | | * @type string |
1570 | | * } |
| 1566 | * @param array $queries An array of dbDelta queries. |
1571 | 1567 | */ |
1572 | 1568 | $queries = apply_filters( 'dbdelta_queries', $queries ); |
1573 | 1569 | |
… |
… |
|
1598 | 1594 | * |
1599 | 1595 | * @since 3.3.0 |
1600 | 1596 | * |
1601 | | * @param array $cqueries { |
1602 | | * Array of queries to be applied to database during upgrade. |
1603 | | * |
1604 | | * @type string |
1605 | | * } |
| 1597 | * @param array $cqueries An array of dbDelta create queries. |
1606 | 1598 | */ |
1607 | 1599 | $cqueries = apply_filters( 'dbdelta_create_queries', $cqueries ); |
1608 | 1600 | |
… |
… |
|
1613 | 1605 | * |
1614 | 1606 | * @since 3.3.0 |
1615 | 1607 | * |
1616 | | * @param array $iqueries { |
1617 | | * Array of queries to be applied to database during upgrade. |
1618 | | * |
1619 | | * @type string |
1620 | | * } |
| 1608 | * @param array $iqueries An array of dbDelta insert queries. |
1621 | 1609 | */ |
1622 | 1610 | $iqueries = apply_filters( 'dbdelta_insert_queries', $iqueries ); |
1623 | 1611 | |