1
Both files use <{php}> to insert some dynamic values, but when the files will be outputted with smarty they contain a bug.
Orginal code for both files is:
le="color: #000000"><?php echo "<link rel="stylesheet" type="text/css" media="all" href="language/$language/style.css" />";
Unfortunately the backslashes before the quotes will be removed by the textsanitizer for above code.
This will be outputted as:
le="color: #000000"><?php echo "<link rel="stylesheet" type="text/css" media="all" href="language/$language/style.css" />";
Correct code should go like this:
le="color: #000000"><?php echo '<link rel="stylesheet" type="text/css" media="all" href="language/'.$language.'/style.css" />';