better message for ERR::CONTENT_TOO_LONG

This commit is contained in:
Mike Schwörer 2020-08-03 13:25:49 +02:00
parent 019408dc6d
commit f1c7314dca
Signed by: Mikescher
GPG Key ID: D3C7172E0A70F8CF
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ try
//------------------------------------------------------------------
if (strlen($message) > 120) api_return(400, ['success' => false, 'error' => ERR::TITLE_TOO_LONG, 'errhighlight' => 103, 'message' => 'Title too long (120 characters)']);
if (strlen($content) > Statics::contentlen_max($data['is_pro'])) api_return(400, ['success' => false, 'error' => ERR::CONTENT_TOO_LONG, 'errhighlight' => 104, 'message' => 'Content too long ('.Statics::contentlen_max($data['is_pro']).' characters)']);
if (strlen($content) > Statics::contentlen_max($data['is_pro'])) api_return(400, ['success' => false, 'error' => ERR::CONTENT_TOO_LONG, 'errhighlight' => 104, 'message' => 'Content too long ('.strlen($content).' characters; max := '.Statics::contentlen_max($data['is_pro']).' characters)']);
//------------------------------------------------------------------