Assigned User Name is Blank

hi! just in case somebody is getting nuts because of this problem…

I’ve found a way to fix it… not sure if definitely but it’s working for me

In the file include/EditView/EditView2.php

inside function process

At Line 569 we overwrite $this->focus->assigned_user_name when !empty($this->focus->assigned_user_id) and it seems the get_assigned_user_name function is failing.

But I’ve found that $this->focus->assigned_user_name has a value already so I think we don’t have to overwrite it… always…

So I have added the condition empty($this->focus->assigned_user_name) to the current condition…

So, that line gets:

 if (!empty($this->focus->assigned_user_id) && empty($this->focus->assigned_user_name) ) {

I hope it helps!

1 Like