fixed an error with the button

This commit is contained in:
Johannes Schwab 2013-09-08 10:12:53 +02:00
parent ad6e4c2ba0
commit e345295c7c
1 changed files with 1 additions and 1 deletions

View File

@ -162,7 +162,7 @@ function show_button($a, &$b) {
*/
if (! $nobutton) {
$b = "<div id=\"profile-smiley-wrapper\" style=\"display: block;\" >\n";
$b .= "\t<img src=\"" . $a->get_baseurl() . "/addon/smileybutton/icon.gif\" id=\"smileybutton\" onclick=\"toggle_smileybutton()\" alt=\"smiley\">\n";
$b .= "\t<img src=\"" . $a->get_baseurl() . "/addon/smileybutton/icon.gif\" onclick=\"toggle_smileybutton()\" alt=\"smiley\">\n";
$b .= "\t</div>\n";
}