Skip to content

Commit

Permalink
Increased suggestion length to 40 (max of 50).
Browse files Browse the repository at this point in the history
  • Loading branch information
redrun45 authored and notartom committed Dec 31, 2023
1 parent 3295442 commit 61a2755
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/controllers/private/Validator.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public function index($project_id = 0)
if (empty($this->data['project'])) redirect(base_url() . 'private/validator/select_project');

$this->data['project']->full_title = create_full_title($this->data['project']);
$this->data['project']->suggested_title = substr(url_title(replace_accents($this->data['project']->full_title), '', true), 0, 21);
$this->data['project']->suggested_title = substr(url_title(replace_accents($this->data['project']->full_title), '', true), 0, 39);
$this->data['project']->author_full_name = $this->_get_author_by_project($project_id);
$this->data['project']->author_last_name = $this->_get_author_by_project($project_id, 'last');

Expand Down

0 comments on commit 61a2755

Please sign in to comment.