Hello
I just upgrade my suitecrm from 7.8.x to 7.10.14
looks like save.php under modules/users disappear
I found something about in the forum that it been removed (PR 6403/2/4)
I using this file on custom (require_once ‘modules/Users/Save.php’
any clue what should I do to resolve it ? there is another file should I use ?
What are you using it for?
That code seems to be in modules/Users/User.php now.
on version I extend save.php
here is what I did
require_once ‘modules/Users/Save.php’;
$sortValue = empty($_POST[‘sort_modules_by_name’]) ? ‘false’ : ‘true’;
$focus->setPreference(‘sort_modules_by_name’, $sortValue, 0, ‘global’);
after upgrade to 7.10.14 I found that save.php are not exist anymore under modules/user
did save.php replaced with another file ?