Minor clean of #986
This commit is contained in:
parent
ff0ca0ef6f
commit
9ff62d02b7
|
|
@ -763,11 +763,11 @@ class Lists extends WidgetBase
|
|||
/*
|
||||
* Extensibility
|
||||
*/
|
||||
if (!is_null($response = Event::fire('backend.list.overrideColumnValue', [$this, $record, $column, $value], true))) {
|
||||
if (($response = Event::fire('backend.list.overrideColumnValue', [$this, $record, $column, $value], true)) !== null) {
|
||||
$value = $response;
|
||||
}
|
||||
|
||||
if (!is_null($response = $this->fireEvent('list.overrideColumnValue', [$record, $column, $value], true))) {
|
||||
if (($response = $this->fireEvent('list.overrideColumnValue', [$record, $column, $value], true)) !== null) {
|
||||
$value = $response;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue