How do I make a custom error

Matthew Hawley

Well-known member
So I made this addon that makes a user check a box before he can edit the thread title. (demonstration here)

If a user doesn't check the box and clicks create thread they will get this:

y8P82WH.png


But I want them to get this:

95im.png


Any suggestions? :)
 
So I made this addon that makes a user check a box before he can edit the thread title. (demonstration here)

If a user doesn't check the box and clicks create thread they will get this:

y8P82WH.png


But I want them to get this:

95im.png


Any suggestions? :)
Would you really want to force people to tick this box everytime they made a post? I know if I was a member on a forum with this it would discourage me posting.
 
Code:
public function something(array $thing, &$errorPhraseKey = '')
{
.
.
.
$errorPhraseKey = 'error_phrase';
}
 
Top Bottom