Skip to content

Commit

Permalink
Bug 580413, fixed pretty names in stats tables
Browse files Browse the repository at this point in the history
  • Loading branch information
potch committed Nov 8, 2010
1 parent bd354f5 commit 3fdd571
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion media/js/zamboni/stats/stats_tables.js
Expand Up @@ -191,7 +191,7 @@ PageTable.prototype.setColumns = function(cols) {
c.field,
"'>");
if (c.field.indexOf('|') > -1 ) {
thead.push(AMO.StatsManager.getPrettyName(this.report, c.field.split('|').splice(1).join('|')));
thead.push(AMO.StatsManager.getPrettyName(that.report, c.field.split('|').splice(1).join('|')));
} else {
thead.push(c.field[0].toUpperCase() + c.field.substr(1));
}
Expand Down

0 comments on commit 3fdd571

Please sign in to comment.