Merge branch 'ent-11456-cambiar-el-fondo-a-none-en-cv-mediante-la-lista-de-elementos-prohibe-el-acceso-a-la-cv' into 'develop'

Ent 11456 cambiar el fondo a none en cv mediante la lista de elementos prohibe el acceso a la cv

See merge request artica/pandorafms!6033
This commit is contained in:
Rafael Ameijeiras 2023-06-08 08:10:22 +00:00
commit f58bbfae2a
1 changed files with 1 additions and 1 deletions

View File

@ -181,7 +181,7 @@ final class Container extends Model
null
);
return ($backgroundImage === 'None.png') ? null : str_replace(' ', '%20', $backgroundImage);
return ($backgroundImage === 'None.png' || $backgroundImage === null) ? null : str_replace(' ', '%20', $backgroundImage);
}