Hi, I have just added a new submenu under ticket.php to show new custom created submenu called "Invoiced" but seems its not featching count of tickets. Could some one point me where need to update this. Code which was updated as below ------------------------------------------------------------------------------------------------------------------------------------------------------------------------if($thisstaff->showAssignedOnly() && $stats) { $nav->addSubMenu(array('desc'=>__('My Invoiced Tickets').' ('.number_format($stats).')', 'title'=>__('My Invoiced Tickets'), 'href'=>'tickets.php?status=invoiced', 'iconclass'=>'closedTickets'), ($_REQUEST=='invoiced'));} else { $nav->addSubMenu(array('desc' => __('Invoiced').' ('.number_format($stats).')', 'title'=>__('Closed Tickets'), 'href'=>'tickets.php?status=invoiced', 'iconclass'=>'closedTickets'), ($_REQUEST=='invoiced'));}