Found a minor bug with TP in regards to the new help system...
The new help system generates URLs like .../index.php?action=help;page=index
However, because TP just checks for a "page", you get errors:
You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'index AND off=0 AND approved=1 LIMIT 1' at line 1
File: /.../Sources/TPortal.php
Line: 313
It's an easy fix though...
Sources/TPortal.php
Find
// view single article?
$mypage='';
if(isset($_GET['page'])){
Replace
// view single article?
$mypage='';
if(isset($_GET['page']) && !isset($_REQUEST['action'])){