When the horizontal login block is enabled the at-horizontal-login class is attached to all delta 0 blocks. This effectively breaks any other block with a delta of 0. (Recent blog posts is one example, block-blog-0.)
// Add classes for the horizontal login block if enabled.
if (theme_get_setting('horizontal_login_block') && $block->module = 'user' && $block->delta == '0') {
$classes[] = 'at-horizontal-login clearfix';
}should be changed to...
// Add classes for the horizontal login block if enabled.
if (theme_get_setting('horizontal_login_block') && $block->module == 'user' && $block->delta == '0') {
$classes[] = 'at-horizontal-login clearfix';
}
Comments
Comment #1
Jeff Burnz commentedekkk, good spotting, certainly I should have tested that more... cheers!
Comment #2
Jeff Burnz commentedCommitted to the 6.x-2.x branch, thanks Cybergarou, much appreciated.