diff options
author | Craig Andrews <candrews@integralblue.com> | 2010-03-31 23:18:40 -0400 |
---|---|---|
committer | Craig Andrews <candrews@integralblue.com> | 2010-03-31 23:18:40 -0400 |
commit | 5f19a94646a94119fe7be435c33fcf0bda5bdfb9 (patch) | |
tree | cbe6a8d035cd9e34e982352626741780fbb9aefd | |
parent | df9eb4164aec6d63869dee7bfd5cfddf6d831618 (diff) |
add missing semicolon
-rw-r--r-- | actions/tag.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/tag.php b/actions/tag.php index 72668a0c9..512dac63a 100644 --- a/actions/tag.php +++ b/actions/tag.php @@ -111,7 +111,7 @@ class TagAction extends Action $this->pagination($this->page > 1, $cnt > NOTICES_PER_PAGE, $this->page, 'tag', array('tag' => $this->tag)); - Event::handle('EndTagShowContent', array($this)) + Event::handle('EndTagShowContent', array($this)); } } |