Visual Console Refactor: removed the html entities from the VC container data

Former-commit-id: 84698dfa749dcdd9725b5ea944a1562deba8b5e3
This commit is contained in:
Alejandro Gallardo Escobar 2019-04-12 12:43:52 +02:00
parent f7d856f064
commit 89200572b5
1 changed files with 2 additions and 1 deletions

View File

@ -210,6 +210,7 @@ final class Container extends Model
// Load side libraries. // Load side libraries.
global $config; global $config;
include_once $config['homedir'].'/include/functions_io.php';
include_once $config['homedir'].'/include/functions_ui.php'; include_once $config['homedir'].'/include/functions_ui.php';
$backgroundUrl = static::extractBackgroundUrl($row); $backgroundUrl = static::extractBackgroundUrl($row);
@ -238,7 +239,7 @@ final class Container extends Model
} }
} }
return $row; return \io_safe_output($row);
} }