29
0
mirror of https://github.com/joomla/joomla-cms.git synced 2024-06-24 22:39:31 +00:00

[4.4] JTable::store(true) to update NULLs fails if assets are tracked (#37993)

* fix

* Phase 1 convert BRANCH to PSR-12

* Phase 2 convert BRANCH to PSR-12

---------
This commit is contained in:
Denitz 2024-02-26 18:33:02 +03:00 committed by GitHub
parent d272577bbb
commit 3277eb82ef
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -901,7 +901,7 @@ abstract class Table extends CMSObject implements TableInterface, DispatcherAwar
$asset->rules = (string) $this->_rules;
}
if (!$asset->check() || !$asset->store($updateNulls)) {
if (!$asset->check() || !$asset->store()) {
$this->setError($asset->getError());
return false;