Originally Posted by Digitalgas
After the upgrade, my Portal page Post Island for Recent Posts will only display 5 recent posts even though I have had it configured for 12 posts. Is there something else I need to do now. Apparently users like to have the 12 posts.

Thanks for reporting this bug.

It looks like the "if not set, lets set it now" was unintentionally removed. ie; the default became the always-set setting.

The good thing is that there is an easy fix for this.

For post islands in 7.7.4
Around line 32 in /forum/cache_builders/post_island.php
FIND:
Code
// Maximum number of posts to display
$limit = 5;

REPLACE WITH:
Code
// Maximum number of posts to display
$limit = (!$items) ? 5 : $items;

This will be fixed in the next release. Thank you smile


EDIT:
For gallery islands in 7.7.4
Around line 24 in /forum/cache_builders/gallery_island.php
FIND:
Code
// Maximum number of images to display
$limit = 5;

REPLACE WITH:
Code
// Maximum number of images to display
$limit = (!$items) ? 5 : $items;


Current developer of UBB.threads PHP Forum Software
Current Release: UBBT 7.7.5 // Preview: UBBT 8.0.0
isaac @ id242.com // my forum @ CelicaHobby.com