@@ -152,7 +152,7 @@ DOCUMENTATION :: END
% elif stat_id == 'top_users':
<% user_href = page('user', row['user_id']) if row['user_id'] else '#' %>
-
+
${row['friendly_name']}
% elif stat_id == 'top_platforms':
diff --git a/data/interfaces/default/index.html b/data/interfaces/default/index.html
index 04a8395d..5d31afdd 100644
--- a/data/interfaces/default/index.html
+++ b/data/interfaces/default/index.html
@@ -759,7 +759,7 @@
if (user_id) {
href = page('user', user_id);
}
- $('#stats-thumb-url-' + stat_id).attr('href', href).prop('title', $(elem).data('friendly_name'));
+ $('#stats-thumb-url-' + stat_id).attr('href', href).prop('title', $(elem).data('user'));
} else if (stat_id === 'top_platforms') {
$('#stats-thumb-' + stat_id).removeClass(function (index, className) {
return (className.match (/(^|\s)platform-\S+/g) || []).join(' ');
diff --git a/data/interfaces/default/js/tables/users.js b/data/interfaces/default/js/tables/users.js
index 5e6f03cd..8256dd21 100644
--- a/data/interfaces/default/js/tables/users.js
+++ b/data/interfaces/default/js/tables/users.js
@@ -62,9 +62,9 @@ users_list_table_options = {
var inactive = '';
if (!rowData['is_active']) { inactive = '
'; }
if (cellData === '') {
- $(td).html('
' + inactive + '
');
+ $(td).html('
' + inactive + '
');
} else {
- $(td).html('
' + inactive + '
');
+ $(td).html('
' + inactive + '
');
}
},
"orderable": false,