Skip to content

Commit

Permalink
Merge branch '2.1-develop' of https://github.com/magento/magento2ce i…
Browse files Browse the repository at this point in the history
…nto MAGETWO-70329-2
  • Loading branch information
dhorytskyi committed Apr 23, 2018
2 parents 21a72ca + b5580f4 commit 74ee5d7
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,19 @@ To suggest documentation improvements, click [here][4].
[3]: <https://github.com/magento/magento2/issues>
[4]: <http://devdocs.magento.com>

<h3>Community Maintainers</h3>
The members of this team have been recognized for their outstanding commitment to maintaining and improving Magento. Magento has granted them permission to accept, merge, and reject pull requests, as well as review issues, and thanks these Community Maintainers for their valuable contributions.

<a href="https://magento.com/magento-contributors#maintainers">
<img src="https://raw.githubusercontent.com/wiki/magento/magento2/images/maintainers.png"/>
</a>

<h3>Top Contributors</h3>
Magento team thanks for any contribution that can improve our code base, documentation or increase test coverage. We always recognize our most active members, your contributions are the foundation of the Magento open source platform.
<a href="https://magento.com/magento-contributors">
<img src="https://raw.githubusercontent.com/wiki/magento/magento2/images/contributors.png"/>
</a>

<h2>Reporting security issues</h2>

To report security vulnerabilities in Magento software or web sites, please e-mail <a href="mailto:security@magento.com">security@magento.com</a>. Please do not report security issues using GitHub. Be sure to encrypt your e-mail with our <a href="https://info2.magento.com/rs/magentoenterprise/images/security_at_magento.asc">encryption key</a> if it includes sensitive information. Learn more about reporting security issues <a href="https://magento.com/security/reporting-magento-security-issue">here</a>.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -492,6 +492,13 @@ public function insertForce($table, array $bind);
/**
* Updates table rows with specified data based on a WHERE clause.
*
* The $where parameter in this instance can be a single WHERE clause or an array containing a multiple. In all
* instances, a WHERE clause can be a string or an instance of {@see Zend_Db_Expr}. In the event you use an array,
* you may specify the clause as the key and a value to be bound to it as the value. E.g., ['amt > ?' => $amt]
*
* If the $where parameter is an array of multiple clauses, they will be joined by AND, with each clause wrapped in
* parenthesis. If you wish to use an OR, you must give a single clause that is an instance of {@see Zend_Db_Expr}
*
* @param mixed $table The table to update.
* @param array $bind Column-value pairs.
* @param mixed $where UPDATE WHERE clause(s).
Expand Down Expand Up @@ -928,7 +935,6 @@ public function getDateExtractSql($date, $unit);
*/
public function getTableName($tableName);


/**
* Build a trigger name based on table name and trigger details
*
Expand Down

0 comments on commit 74ee5d7

Please sign in to comment.