1
0
mirror of https://github.com/e107inc/e107.git synced 2025-01-16 20:28:28 +01:00

Merge pull request #4709 from Jimmi08/patch-32

Fixes #3908 - Template option for signature bbcodes
This commit is contained in:
Cameron 2022-03-22 10:04:09 -07:00 committed by GitHub
commit 632e434711
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -306,7 +306,7 @@ class usersettings_shortcodes extends e_shortcode
//$cols = (isset($cols) ? $cols : 58);
//$rows = (isset($rows) ? $rows : 4);
//return "<textarea class='tbox signature' name='signature' cols='{$cols}' rows='{$rows}' onselect='storeCaret(this);' onclick='storeCaret(this);' onkeyup='storeCaret(this);'>".$this->var['user_signature']."</textarea>";
return e107::getForm()->bbarea('signature', $this->var['user_signature'], '', '', 'small');
return e107::getForm()->bbarea('signature', $this->var['user_signature'], 'signature', '', 'small');
}