Merge branch 'ent-9793-imagen-de-fondo-en-consola-visual-no-carga-si-el-nombre-tiene-espacios' into 'develop'
Fix VC background with spaces on his name See merge request artica/pandorafms!5267
This commit is contained in:
commit
fe6850a9c7
|
@ -181,7 +181,7 @@ final class Container extends Model
|
|||
null
|
||||
);
|
||||
|
||||
return ($backgroundImage === 'None.png') ? null : $backgroundImage;
|
||||
return ($backgroundImage === 'None.png') ? null : str_replace(' ', '%20', $backgroundImage);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue