diff options
author | Jeffery To <jeffery.to@gmail.com> | 2009-08-02 19:52:27 +0800 |
---|---|---|
committer | Jeffery To <jeffery.to@gmail.com> | 2009-08-02 19:52:27 +0800 |
commit | 20c536fdd461c8f39dd6a03751b534a996a94078 (patch) | |
tree | caca809af61f63e979d42e31e8acebde403b194a /actions | |
parent | fe57e2e06b3ae5e7eb9001a0ffe80d9a7d20a5be (diff) |
Fixed PHP Notice "Undefined variable: cnt"
Diffstat (limited to 'actions')
-rw-r--r-- | actions/conversation.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/actions/conversation.php b/actions/conversation.php index c8755ba6e..6b5d8d54d 100644 --- a/actions/conversation.php +++ b/actions/conversation.php @@ -167,6 +167,8 @@ class ConversationTree extends NoticeList function _buildTree() { + $cnt = 0; + $this->tree = array(); $this->table = array(); |