From cb56587970d964c811b0927dd9d39723a080a03e Mon Sep 17 00:00:00 2001 From: Shish Date: Thu, 16 Jul 2009 20:56:39 +0100 Subject: [PATCH] make sure 0 is printed --- ext/tag_list/main.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/tag_list/main.php b/ext/tag_list/main.php index 5bb64146..cba9e52f 100644 --- a/ext/tag_list/main.php +++ b/ext/tag_list/main.php @@ -158,7 +158,7 @@ class TagList implements Extension { $tag_data = $result->GetArray(); $html = "Results grouped by loge(n)"; - $lastLog = 0; + $lastLog = ""; foreach($tag_data as $row) { $h_tag = html_escape($row['tag']); $count = $row['count'];