hello and thanks... great theme!

just noticed (2) instances of <br> tag being used
in node-forum.tpl.php-

and replaced with <br /> instead to validate as xhtml 1.0 strict.

original code here:

    <div class="user-member"><?php print t('<strong>Member since:</strong><br> !ago', array('!ago' => format_interval(time() - $account->created))); ?></div>  
    <div class="user-access"><?php print t('<strong>Last activity:</strong><br> !ago', array('!ago' => format_interval(time() - $account->access))); ?></div>  

modified code here:

    <div class="user-member"><?php print t('<strong>Member since:</strong><br /> !ago', array('!ago' => format_interval(time() - $account->created))); ?></div>  
    <div class="user-access"><?php print t('<strong>Last activity:</strong><br /> !ago', array('!ago' => format_interval(time() - $account->access))); ?></div>  

thanks again for a great theme... love your work and style!

vincent, in buffalo

Comments

derjochenmeyer’s picture

fixed in new version.

derjochenmeyer’s picture

Status: Active » Fixed
Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.