First item in each category list is not a link

The first link was displaying incorrectly because of a bug with a ” sign. On line 60 of ListCatDisplayer.php, there was a wrong “: $this->lcp_output .= ‘<‘ . $tag; if (isset($this->params[‘class’])): $this->lcp_output .= ‘ class=”‘ . $this->params[‘class’]; endif; $this->lcp_output .= ‘”>’; As you can see, I was always adding the ” when closing the tag. … Read more