From 02649004970ea11bfabfe23e29f93601b529a059 Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Wed, 13 Jul 2011 22:10:09 +0200 Subject: [PATCH] better ui --- count-nodes.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/count-nodes.php b/count-nodes.php index 3d98a27..220be04 100755 --- a/count-nodes.php +++ b/count-nodes.php @@ -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"; ?>