Commit 991bae14 authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

Don't change the UI level during ExecuteAction.

parent 13fee293
......@@ -3803,17 +3803,10 @@ end:
static UINT ACTION_ExecuteAction(MSIPACKAGE *package)
{
static const WCHAR szUILevel[] = {'U','I','L','e','v','e','l',0};
static const WCHAR szTwo[] = {'2',0};
UINT rc;
LPWSTR level;
level = msi_dup_property( package, szUILevel );
MSI_SetPropertyW(package,szUILevel,szTwo);
package->script->InWhatSequence |= SEQUENCE_EXEC;
rc = ACTION_ProcessExecSequence(package,FALSE);
MSI_SetPropertyW(package,szUILevel,level);
msi_free(level);
return rc;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment