Skip to content

Commit 6d329cb

Browse files
committed
Merge remote-tracking branch 'origin/2.3-develop' into 2.3-develop-pr13
2 parents 428601f + a60b822 commit 6d329cb

File tree

6 files changed

+16
-1
lines changed

6 files changed

+16
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/magento/magento2?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
44
[![Crowdin](https://d322cqt584bo4o.cloudfront.net/magento-2/localized.png)](https://crowdin.com/project/magento-2)
55
<h2>Welcome</h2>
6-
Welcome to Magento 2 installation! We're glad you chose to install Magento 2, a cutting edge, feature-rich eCommerce solution that gets results.
6+
Welcome to Magento 2 installation! We're glad you chose to install Magento 2, a cutting-edge, feature-rich eCommerce solution that gets results.
77

88
## Magento system requirements
99
[Magento system requirements](http://devdocs.magento.com/guides/v2.2/install-gde/system-requirements2.html)

dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Analytics/Test/AdminConfigurationEnableDisableAnalyticsCest.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
<severity value="MAJOR"/>
1717
<testCaseId value="MAGETWO-66465"/>
1818
<group value="analytics"/>
19+
<!-- MAGETWO-90659 -->
20+
<group value="skip"/>
1921
</annotations>
2022
<after>
2123
<amOnPage stepKey="amOnLogoutPage" url="admin/admin/auth/logout/"/>

dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Analytics/Test/AdminConfigurationIndustryCest.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
<severity value="MAJOR"/>
1818
<testCaseId value="MAGETWO-63898"/>
1919
<group value="analytics"/>
20+
<!-- MAGETWO-90659 -->
21+
<group value="skip"/>
2022
</annotations>
2123

2224
<actionGroup ref="LoginActionGroup" stepKey="loginAsAdmin"/>

dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Analytics/Test/AdminConfigurationPermissionCest.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
<severity value="CRITICAL"/>
1818
<testCaseId value="MAGETWO-82648"/>
1919
<group value="analytics"/>
20+
<!-- MAGETWO-90659 -->
21+
<group value="skip"/>
2022
</annotations>
2123
<before>
2224
<createData stepKey="noReportUserRole" entity="adminNoReportRole"/>

dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Newsletter/Test/VerifyTinyMCEv4IsNativeWYSIWYGOnNewsletterCest.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
<description value="Admin see TinyMCEv4.6 is native WYSIWYG on Newsletter"/>
1717
<severity value="CRITICAL"/>
1818
<testCaseId value="MAGETWO-84683"/>
19+
<!-- MAGETWO-90659 -->
20+
<group value="skip"/>
1921
</annotations>
2022
<before>
2123
<actionGroup ref="LoginActionGroup" stepKey="loginGetFromGeneralFile"/>

lib/internal/Magento/Framework/DB/Adapter/AdapterInterface.php

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -495,6 +495,13 @@ public function insertForce($table, array $bind);
495495
/**
496496
* Updates table rows with specified data based on a WHERE clause.
497497
*
498+
* The $where parameter in this instance can be a single WHERE clause or an array containing a multiple. In all
499+
* instances, a WHERE clause can be a string or an instance of {@see Zend_Db_Expr}. In the event you use an array,
500+
* you may specify the clause as the key and a value to be bound to it as the value. E.g., ['amt > ?' => $amt]
501+
*
502+
* If the $where parameter is an array of multiple clauses, they will be joined by AND, with each clause wrapped in
503+
* parenthesis. If you wish to use an OR, you must give a single clause that is an instance of {@see Zend_Db_Expr}
504+
*
498505
* @param mixed $table The table to update.
499506
* @param array $bind Column-value pairs.
500507
* @param mixed $where UPDATE WHERE clause(s).

0 commit comments

Comments
 (0)