Visual Console Refactor: removed the html entities from the VC container data
Former-commit-id: 84698dfa749dcdd9725b5ea944a1562deba8b5e3
This commit is contained in:
parent
f7d856f064
commit
89200572b5
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue