Notice and warning messages appear if the Account links are disabled on the Administration menu. The problem appears to be related to line 217 in the adminimal_admin_menu.module file, which does not check for the existence of $content['account']. The code below worked for me:

if(!empty($content['account'])) {
	$responsivemenu = array_merge($content['account'], $responsivemenu);
	$responsivemenu['account']['#weight'] = 99;
	$responsivemenu['logout']['#weight'] = 100;
	}
CommentFileSizeAuthor
#2 3149640-2-undefined-index-account.patch773 byteslisa.rae

Comments

marksmith created an issue. See original summary.

lisa.rae’s picture

StatusFileSize
new773 bytes

Patch is attached per comments above, applied to 7.x-1.x branch.

lisa.rae’s picture

Version: 7.x-1.9 » 7.x-1.x-dev
Status: Active » Needs review