The instructions say to find in admincp/index.php :
Code:
// *************************************************
if (can_administer('canadminstyles'))
But my admincp/index.php looks like:
Code:
// *************************************************
$printhr = false;
if (can_administer('canadminstyles'))
{
And your code wants $printhr = true.
Do I put your code in between the $printhr line and the if (can_administer line? Or do I replace the $printhr=false line as well?