4
Here is my patch:
Correctif CBB 3.08 Edit the file "print.php", go to line 115-118:
$postsArray = $topic_handler->getAllPosts($forumtopic);
foreach ($postsArray as $post) {
if(!$post->getVar('approved')) continue;
$post_data = $post_handler->getPostForPrint($post);
Replace with:
$postsArray = $topic_handler->getAllPosts($forumtopic, "ASC", 1000);
foreach ($postsArray as $eachpost) {
if(!$eachpost->getVar('approved')) continue;
$post_data = $eachpost->getPostBody();