Instead of the string "Overview" I want to set it to an image, is that possible and how can I do it?
if (empty($lang) || !is_array($lang)) {
$lang = array();
}
$lang = array_merge($lang, array(
'UCP_MAIN' => 'Overview',
));
In the file language/en/ucp.php
just replace the string with a full img
tag as follows:
'UCP_MAIN' => '<img src="http://lorempixel.com/100/100/sports/1" />',
Notice: This solution is tested on phpbb3 version 3.0.13-PL1.