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
Use of uninitialized value in substr at /opt/otobo/bin/psgi-bin/../../Kernel/Output/HTML/TicketOverview/CustomerList.pm line 176.
If you are loading a list of tickets in customer dashboard, the above error is shown for every ticket
The problem is the usage of the wrong keys to get $UserInitials.
Wrong: UserFirstName -> Correct: UserFirstname
Wrong: UserLastName -> Correct: UserLastname
Use of uninitialized value in substr at /opt/otobo/bin/psgi-bin/../../Kernel/Output/HTML/TicketOverview/CustomerList.pm line 176.
If you are loading a list of tickets in customer dashboard, the above error is shown for every ticket
The problem is the usage of the wrong keys to get $UserInitials.
Wrong: UserFirstName -> Correct: UserFirstname
Wrong: UserLastName -> Correct: UserLastname
$UserInitials = substr( $CustomerUser{UserFirstName}, 0, 1 ) . substr( $CustomerUser{UserLastName}, 0, 1 );
The text was updated successfully, but these errors were encountered: