A coding suggestion: Replace the two deprecated iif functions (used in post_thanks.php) with
ternary conditional operators.
Quote:
Originally Posted by vBulletin API Guide
* iif($condition, $r_true, $r_false) --> obsolete, use ($condition ? $r_true : $r_false) instead;
|
It's also a very, very small speed optimization (less function calls).
There are also some old queries in the functions_post_thanks.php code (replace them with read, write, first, ... queries).