notice: Undefined variable: output in /public_html/sandbox/sites/all/themes/admire_grunge/template.php on line 68.

Comments

sakib000’s picture

Status: Active » Fixed

Change

	if($user->uid)
	{
		$output .= theme('item_list', array(
		l(t('My account |'), $myAccount, array('title' => t('My account'))),
		l(t(' Sign out'), $logOut)));
		return $output;
	}

to

	if($user->uid)
	{
		$output = theme('item_list', array(
		l(t('My account |'), $myAccount, array('title' => t('My account'))),
		l(t(' Sign out'), $logOut)));
		return $output;
	}

Status: Fixed » Closed (fixed)

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