TinyPortal

Development => Feedback => Bugs/Errors => Topic started by: Bikken on October 15, 2008, 02:17:45 AM

Title: [bugtracker] 1.0.6beta2 - Missing in TPortalAdmin.template file
Post by: Bikken on October 15, 2008, 02:17:45 AM
Found out that there's a missing </table> in TPortalAdmin.template file at the end of template_main() function (around line 2445):

 echo '
   </table>
  </form>';

}

Should be:

 echo '
   </table>
  </form>';
 echo'
 </table>';

}

See topic: http://www.tinyportal.net/index.php/topic,26547.0.html
Title: Re: [bugtracker] 1.0.6beta2 - Missing in TPortalAdmin.template file
Post by: whoesa on October 15, 2008, 02:24:45 AM
Sorry, just tried to edit the topic title but somehow posted it twice now.  ::)
Title: Re: [bugtracker] 1.0.6beta2 - Missing in TPortalAdmin.template file
Post by: IchBin on October 15, 2008, 02:29:12 AM
No problem. Deleted the other topic and closed the duplicate bug. Thanks for helping out.
Title: Re: [bugtracker] 1.0.6beta2 - Missing in TPortalAdmin.template file
Post by: bloc on October 16, 2008, 08:41:46 PM
Fixed for beta3.

There was a table tag missing on the overall table - which is now removed as it wasn't needed.