Skip to content
Snippets Groups Projects
Commit ac79fbd1 authored by Tim Steiner's avatar Tim Steiner
Browse files

Fix another undefined varibable notice.

git-svn-id: file:///tmp/wdn_thm_drupal/branches/drupal-7.x@70 20a16fea-79d4-4915-8869-1ea9d5ebf173
parent b46bde40
No related branches found
No related tags found
No related merge requests found
......@@ -125,8 +125,10 @@ function unl_wdn_menu_local_task($variables)
return '<li' . (!empty($variables['element']['#active']) ? ' class="selected"' : '') . '>' . l($link_text, $link['href'], $link['localized_options']) . "</li>\n";
}
function unl_wdn_status_messages()
function unl_wdn_status_messages($variables)
{
$display = $variables['display'];
$output = '';
foreach (drupal_get_messages($display) as $type => $messages) {
$type = ucfirst($type);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment