mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Fixed link to cookbook
This commit is contained in:
parent
cad57dcc28
commit
4f9d764fc2
1 changed files with 1 additions and 1 deletions
|
@ -2652,7 +2652,7 @@ class Model extends Object implements CakeEventListener {
|
||||||
* Fields are treated as SQL snippets, to insert literal values manually escape your data.
|
* Fields are treated as SQL snippets, to insert literal values manually escape your data.
|
||||||
* @param mixed $conditions Conditions to match, true for all records
|
* @param mixed $conditions Conditions to match, true for all records
|
||||||
* @return bool True on success, false on failure
|
* @return bool True on success, false on failure
|
||||||
* @link http://book.cakephp.org/2.0/en/models/saving-your-data.html#model-updateall-array-fields-array-conditions
|
* @link http://book.cakephp.org/2.0/en/models/saving-your-data.html#model-updateall-array-fields-mixed-conditions
|
||||||
*/
|
*/
|
||||||
public function updateAll($fields, $conditions = true) {
|
public function updateAll($fields, $conditions = true) {
|
||||||
return $this->getDataSource()->update($this, $fields, null, $conditions);
|
return $this->getDataSource()->update($this, $fields, null, $conditions);
|
||||||
|
|
Loading…
Reference in a new issue