function getEndBody()
 {
     $html = "";
     if ($this->forMember == false) {
         $colums = count($this->getFieldNames());
         if ($this->even) {
             $class = 'mw-line-even';
         } else {
             $class = 'mw-line-odd';
         }
         $this->even = !$this->even;
         $html .= "<tr class=\"{$class} mw-line-last\"><td colspan=\"{$colums}\">";
         $html .= SpecialWikiplaces::getLinkCreateWikiplace('wp-create-wikiplace-long');
         $html .= "</td></tr>";
     }
     $html .= parent::getEndBody();
     return $html;
 }