diff --git a/include/class_tag.php b/include/class_tag.php index c759ff942..ea438bfd7 100644 --- a/include/class_tag.php +++ b/include/class_tag.php @@ -24,10 +24,13 @@ class Tag { function __construct($p_cn) { + $this->cn=$p_cn; $this->data=new Tag_SQL($p_cn); } function show_list() { + $ret=$this->data->seek(' order by t_tag'); + if ( $this->cn->count($ret) == 0) return ""; } }