Module Menu Filters are not working in SuiteCRM Version 7.13.2

HI All,

Module Menu Filters are not working When editing and saving nothing happens but modules and other menus action working properly.
I’m using the below version.

SuiteCRM Version 7.13.2
Sugar Version 6.5.25 (Build 344)

Thanks in advance for your help.

What PHP version are you running? I had this issue running PHP8, but it resolved when I bumped back to PHP 7.4

HI All,

I have fix this issue by doing below changes

I modified code in

\modules\Studio\SaveTabs.php

// TabGroupHelper::saveTabGroups($_POST); - comment this and
added below two lines
$TabGroup = new TabGroupHelper();
$newTabGroup = $TabGroup->saveTabGroups($_POST);

@arvnd86 maybe you can create a PR on github with this fix? Thank you!