OK, I've found the bug that makes the N/A posts not being shown. It's any easy fix so you could do it yourself, just follow the instructions below.
Find this line in showthreaded:
code:
$tree[$aparent][$anumber]['Approved'] = $aaproved;
Change it to this:
code:
$tree[$aparent][$anumber]['Approved'] = $aapproved;
Then open postlist.php and find this line:
code:
$tree[$aparent][$anumber]['Approved'] = $aaproved;
And change it to this:
code:
$tree[$aparent][$anumber]['Approved'] = $aapproved;