Skip to content

Commit

Permalink
better ui
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Corallo committed Jul 13, 2011
1 parent d19a616 commit 0264900
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions count-nodes.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@
$result = query_dns_total();
$result = init_results($result);
$row = get_assoc_result_row($result);
echo "In DNS:\t\t".$row['COUNT(*)']."\n";
echo "In DNS:\t".$row['COUNT(*)']."\n";
$result = query_total();
$result = init_results($result);
$row = get_assoc_result_row($result);
echo "Total:\t\t".$row['COUNT(*)']."\n";
echo "Total:\t".$row['COUNT(*)']."\n";
?>

0 comments on commit 0264900

Please sign in to comment.