mvc - extend model implementation to ease legacy migrations, fix regresison in 35b5e0b64b

This commit is contained in:
Ad Schellevis 2024-02-26 09:51:45 +01:00
parent 0d4db3306e
commit 668a057dac

View File

@ -461,7 +461,7 @@ abstract class BaseModel
*/
public function isLegacyMapper()
{
return str_ends_with($this->internal_mountpoint, '+') && strpos($model_xml->mount, "//") !== 0;
return str_ends_with($this->internal_mountpoint, '+') && strpos($this->internal_mountpoint, "//") !== 0;
}