Skip to content

Commit

Permalink
Fix HTML issue.
Browse files Browse the repository at this point in the history
A <a> tag wasn't closed.

Signed-off-by: Hugues Peccatte <hugues.peccatte@gmail.com>
  • Loading branch information
Tithugues committed May 17, 2015
1 parent 95ac6b4 commit f3a7f4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/server_privileges.lib.php
Expand Up @@ -2521,7 +2521,7 @@ function PMA_getUserLink(
$html .= PMA_Util::getIcon('b_tblexport.png', __('Export'));
break;
}
$html . '</a>';
$html .= '</a>';

return $html;
}
Expand Down

0 comments on commit f3a7f4e

Please sign in to comment.