Fixed missing closing parenthesis.
This commit is contained in:
parent
d9f35594e7
commit
9f5076cc77
1 changed files with 1 additions and 1 deletions
|
@ -156,7 +156,7 @@ if($isEditing) {
|
|||
$notices[] = 'You\'re not allowed to edit your forum signature.';
|
||||
} else {
|
||||
$sigText = (string)($_POST['signature']['text'] ?? '');
|
||||
$sigParse = TextFormat::tryFrom((string)($_POST['signature']['parser'] ?? '') ?? TextFormat::Plain;
|
||||
$sigParse = TextFormat::tryFrom((string)($_POST['signature']['parser'] ?? '')) ?? TextFormat::Plain;
|
||||
$sigValid = $msz->usersCtx->users->validateForumSignature($sigParse, $sigText);
|
||||
|
||||
if($sigValid === '')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue