View source for How to add custom HTML element to code.php

Hi Admin,

I creates custom css for code.php in 6.0.12 version 
I added '##<div class="outer"><div class="code">##' element.

code.php

%%(php)
<?php

echo	'<ignore><!--notypo-->' .
			'<div class="outer"><div class="code">' .
				Ut::html($text) .
			'</div></div>' .
		'<!--/notypo--></ignore>';
%%


After upgrade to 6.0.37 it's not work because the code has changed.


%%(php)
<?php

$tpl->text = Ut::html($text);
%%



How to add  '##<div class="outer"><div class="code">##' element to code.php in 6.0.37 version?

((https://ibb.co.com/ngDnx1B))

Thank you.