Skip to content

Commit

Permalink
extended character limit for about
Browse files Browse the repository at this point in the history
  • Loading branch information
SDClowen committed Nov 29, 2023
1 parent 8db3f53 commit 28a92e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/controllers/surveys.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public function apply(int $id = 0)
$post = Request::post();
$validate = validate($post, [
"title" => ["name" => lang("title"), "required" => true, "min" => 8, "max" => 255],
"about" => ["name" => lang("title"), "min" => 0, "max" => 512],
"about" => ["name" => lang("title"), "min" => 0, "max" => 5000],
"csrf" => ["name" => lang("csrf"), "required" => true],
#"photo" => ["name" => lang("photo")],
"data" => ["name" => "data", "required" => true]
Expand Down

0 comments on commit 28a92e9

Please sign in to comment.