Skip to content
Snippets Groups Projects

Issue #3260087: Warning: mb_strlen() expects parameter 1 to be string, array given

Open Issue #3260087: Warning: mb_strlen() expects parameter 1 to be string, array given
1 unresolved thread
1 unresolved thread

Merge request reports

Members who can merge are allowed to add commits.
Approval is optional
Ready to merge by members who can write to the target branch.

Merge details

  • The source branch is 133 commits behind the target branch.
  • 3 commits and 1 merge commit will be added to .
  • Source branch will not be deleted.

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
147 147 '#markup' => $this->t('Password reset instructions will be sent to your registered email address.'),
148 148 '#suffix' => '</p>',
149 149 ];
150 $form['name']['#default_value'] = $this->getRequest()->query->get('name');
150 $default_value = $this->getRequest()->query->get('name');
151 if (is_string($default_value)) {
152 $form['name']['#default_value'] = $default_value;
153 }
Please register or sign in to reply
Loading