Fix HTML issue.

A <a> tag wasn't closed.

Signed-off-by: Hugues Peccatte <hugues.peccatte@gmail.com>
This commit is contained in:
Hugues Peccatte 2015-05-17 15:42:57 +02:00
parent 95ac6b46dd
commit f3a7f4e6d1

View File

@ -2521,7 +2521,7 @@ function PMA_getUserLink(
$html .= PMA_Util::getIcon('b_tblexport.png', __('Export'));
break;
}
$html . '</a>';
$html .= '</a>';
return $html;
}