Skip to content

Commit

Permalink
Refinement for sorting by IP address. Remove the '.' inside the padde…
Browse files Browse the repository at this point in the history
…d IP as this was causing issue's for tablesorter JS.
  • Loading branch information
mark-unwin committed Mar 30, 2016
1 parent 6020cce commit 511791b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code_igniter/application/views/theme-tango/v_report.php
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@
break;

case "ip_address":
echo "\t\t\t<td style=\"text-align: $column_align;\"><span style=\"display: none;\">".htmlentities($row->man_ip_address)."&nbsp;</span>".htmlentities(ip_address_from_db($row->man_ip_address))."</td>\n";
echo "\t\t\t<td style=\"text-align: $column_align;\"><span style=\"display: none;\">".htmlentities(str_replace(',', '', $row->man_ip_address))."&nbsp;</span>".htmlentities(ip_address_from_db($row->man_ip_address))."</td>\n";
break;

case "multi":
Expand Down

0 comments on commit 511791b

Please sign in to comment.