Commit 1204c326 by Scott

Merge pull request #64 from pupi1985/patch-26

Fixed an issue that allowed null title and content in posts
parents b4c719e2 3891fdd8
...@@ -116,14 +116,12 @@ ...@@ -116,14 +116,12 @@
Add textual element $field to $errors if length of $input is not between $minlength and $maxlength Add textual element $field to $errors if length of $input is not between $minlength and $maxlength
*/ */
{ {
if (isset($input)) { $length = isset($input) ? qa_strlen($input) : 0;
$length=qa_strlen($input);
if ($length < $minlength) if ($length < $minlength)
$errors[$field]=($minlength==1) ? qa_lang('main/field_required') : qa_lang_sub('main/min_length_x', $minlength); $errors[$field] = ($minlength == 1) ? qa_lang('main/field_required') : qa_lang_sub('main/min_length_x', $minlength);
elseif (isset($maxlength) && ($length > $maxlength)) elseif (isset($maxlength) && ($length > $maxlength))
$errors[$field]=qa_lang_sub('main/max_length_x', $maxlength); $errors[$field] = qa_lang_sub('main/max_length_x', $maxlength);
}
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment