Skip to content

Commit

Permalink
Fix display user signature when WYSIWYG is enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
FHenry committed Nov 14, 2014
1 parent c0a3606 commit 00c6033
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion htdocs/user/fiche.php
Expand Up @@ -1208,7 +1208,11 @@

// Signature
print '<tr><td valign="top">'.$langs->trans('Signature').'</td><td>';
print dol_htmlentitiesbr($object->signature);
if (empty($conf->global->FCKEDITOR_ENABLE_USERSIGN)) {
print dol_htmlentitiesbr($object->signature);
} else {
print $object->signature;
}
print "</td></tr>\n";

// Hierarchy
Expand Down

0 comments on commit 00c6033

Please sign in to comment.