You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a warning at register action caused by 15 line in doAuthActions.class.php
There is:
$this->form->bind($request->getParameter('signin'), $request->getParameter('signin'))
while the second parameter should be array of files.
Changing this line to:
$request->getParameter('signin')
removes the warning
The text was updated successfully, but these errors were encountered:
There is a warning at register action caused by 15 line in doAuthActions.class.php
There is:
$this->form->bind($request->getParameter('signin'), $request->getParameter('signin'))
while the second parameter should be array of files.
Changing this line to:
$request->getParameter('signin')
removes the warning
The text was updated successfully, but these errors were encountered: