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
Hello,
I'm running Grav v1.6.0-rc.4 - Admin v1.9.0-rc.4.
Having a problem with the admin-addon-user-manager plugin that led me to open a ticket, I think that the problem is coming from a PHP error of syntax in the file \system\src\Grav\Common\User\DataUser\User.php, from line 154 to 157, as the Critkey error returns this code as failing :
public function getMediaFolder()
{
return $this->blueprints->fields()['avatar']['destination'] ?? 'user://accounts/avatars';
}
I think it should be fields(['avatar']['destination']) instead of fields()['avatar']['destination'] .
Can you confirm me that ?
The text was updated successfully, but these errors were encountered:
Hello,
I'm running Grav v1.6.0-rc.4 - Admin v1.9.0-rc.4.
Having a problem with the admin-addon-user-manager plugin that led me to open a ticket, I think that the problem is coming from a PHP error of syntax in the file \system\src\Grav\Common\User\DataUser\User.php, from line 154 to 157, as the Critkey error returns this code as failing :
I think it should be
fields(['avatar']['destination'])
instead offields()['avatar']['destination']
.Can you confirm me that ?
The text was updated successfully, but these errors were encountered: