Fix a code style typo

This commit is contained in:
Serge Latyntcev 2018-11-13 10:20:49 +13:00
parent 4b4fbabed5
commit 15aaf9db9f

View File

@ -265,7 +265,7 @@ class TreeMultiselectField extends TreeDropdownField
/** /**
* {@inheritdoc} * {@inheritdoc}
* *
* @deprecated 4.0..5.0 * @internal To be removed in 5.0
*/ */
protected function objectForKey($key) protected function objectForKey($key)
{ {
@ -281,7 +281,7 @@ class TreeMultiselectField extends TreeDropdownField
* This fix is not ideal, but supposed to keep backward compatibility for SS4. * This fix is not ideal, but supposed to keep backward compatibility for SS4.
* Since SS5 this method should be removed and NULL should be used instead of 'unchanged'. * Since SS5 this method should be removed and NULL should be used instead of 'unchanged'.
*/ */
if ($this->getKeyField() ==='ID' && $key === 'unchanged') { if ($this->getKeyField() === 'ID' && $key === 'unchanged') {
$key = null; $key = null;
} }