mirror of
https://github.com/unraid/webgui.git
synced 2026-04-21 01:08:42 -05:00
Strip HTML from back-end
HTML tags are converted to HTML entities somewhere along the chain and `CreateDocker.php` generates:
`addLog('<b>Error: Image can not be deleted<br><i>In use by other container(s)</i></b>');`

This commit is contained in:
@@ -531,7 +531,7 @@ class DockerClient {
|
||||
'304' => 'Container already started',
|
||||
'400' => 'Bad parameter',
|
||||
'404' => 'No such container',
|
||||
'409' => 'Image can not be deleted<br><i>In use by other container(s)</i>',
|
||||
'409' => 'Image can not be deleted, in use by other container(s)',
|
||||
'500' => 'Server error'
|
||||
];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user