Contao\BackendUser::save PHP Method

save() public method

Restore the original numeric file mounts (see #5083)
public save ( )
    public function save()
    {
        $filemounts = $this->filemounts;
        if (!empty($this->arrFilemountIds)) {
            $this->arrData['filemounts'] = $this->arrFilemountIds;
        }
        parent::save();
        $this->filemounts = $filemounts;
    }