Skip to content
Snippets Groups Projects
Commit 94e61d9b authored by rswindell's avatar rswindell
Browse files

Fix the "undefined" age and sex (gender) values when listing systems that

support active-users.json queries but don't report age and gender.
parent 6473f58a
No related branches found
No related tags found
No related merge requests found
...@@ -86,8 +86,8 @@ function list_user(user, sys) ...@@ -86,8 +86,8 @@ function list_user(user, sys)
,user.name ,user.name
,action ,action
,system.secondstr(user.timeon) ,system.secondstr(user.timeon)
,user.age ,user.age ? user.age : ''
,user.sex ,user.sex ? user.sex : ''
)); ));
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment