My skin's Pending Followers menu link count stopped working
Using Jamroom
I've had this code in my custom skin working fine for a long time, but it no longer works, not sure why.
In my custom skin's Menu template, I have this code:
{foreach from=$_items name="loop" item="entry"}
{if isset($entry.menu_function_result) && strlen($entry.menu_function_result) > 0}
{if is_numeric($entry.menu_function_result)}
<li><a href="{$entry.menu_url}">{$entry.menu_label} [{$entry.menu_function_result}]</a></li>
{else}
<li><a href="{$entry.menu_url}">{$entry.menu_label} <img src="{$entry.menu_function_result}" alt="{$entry.menu_label}"></a></li>
{/if}
{else}
{if $entry.menu_label == "Private Messages"}
{* CUSTOM CODE for pending followers in menu HERE *}
{if jrUser_is_logged_in()}
<li><a href="{$jamroom_url}/{$_user.profile_url}/follow">Pending Followers: {jrCore_list module="jrFollower" search1="follow_profile_id = `$_user._profile_id`" search2="follow_active = 0" return_count=true no_cache=true}</a></li>
{/if}
{/if}
<li><a href="{$entry.menu_url}">{$entry.menu_label}</a></li>
{/if}
{/foreach}
...which resulted in a custom item in my profile dropdown menu which gave a number count of how many Followers were Pending approval for a member (and showed a numeral zero if there were none pending).
Now I see on both my own master admin profile and on a 'regular member' test profile, there are pending followers but no number shows in the drop down menu anymore like it should.
I assume some update tripped this up, what should I do? (BTW the same problem on my other pennywhistle site.)
updated by @strumelia: 01/01/21 04:56:58PM