This commit is contained in:
DavidXanatos 2024-07-10 09:25:02 +02:00
parent 50e633ab80
commit 2ad3eaea81
2 changed files with 7 additions and 2 deletions

View File

@ -10,6 +10,11 @@ This project adheres to [Semantic Versioning](http://semver.org/).
### Fixed
- fixed The Start Restrictions tab's layout is broken [#4045](https://github.com/sandboxie-plus/Sandboxie/issues/4045)
- fixed Administrators cannot change the sandbox configuration [#4057](https://github.com/sandboxie-plus/Sandboxie/issues/4057) [#4068](https://github.com/sandboxie-plus/Sandboxie/issues/4068)
### Added
- added hwid display

View File

@ -728,7 +728,7 @@ ULONG SbieIniServer::IsCallerAuthorized(HANDLE hToken, const WCHAR *Password, co
if (SbieApi_QueryConfBool(Section, L"EditAdminOnly", FALSE)) {
if (! TokenIsAdmin(hToken, true)) {
if (! TokenIsAdmin(hToken)) {
CloseHandle(hToken);
return STATUS_LOGON_NOT_GRANTED;
}