diff options
author | Bob Arnson <bob@firegiant.com> | 2024-09-27 22:09:24 -0400 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2024-12-26 21:46:38 -0800 |
commit | aa2678906191e0535fad5634467f074aae049c09 (patch) | |
tree | d4b4d03a313d12dac0f4ee7f81b1945b1293691e /src/ext/UI/wixlib/BrowseDlg.wxs | |
parent | 3986a0b375d5b536f897d6284770baf711afaf86 (diff) | |
download | wix-aa2678906191e0535fad5634467f074aae049c09.tar.gz wix-aa2678906191e0535fad5634467f074aae049c09.tar.bz2 wix-aa2678906191e0535fad5634467f074aae049c09.zip |
Drop CA path validation in WixUI by default.
Add `WixUI/ExtendedPathValidation="yes"` to opt-in.
Removed the WIXUI_DONTVALIDATEPATH runtime opt-out.
Fixes https://github.com/wixtoolset/issues/issues/8718
Relies on https://github.com/wixtoolset/wix/pull/563
Diffstat (limited to 'src/ext/UI/wixlib/BrowseDlg.wxs')
-rw-r--r-- | src/ext/UI/wixlib/BrowseDlg.wxs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/ext/UI/wixlib/BrowseDlg.wxs b/src/ext/UI/wixlib/BrowseDlg.wxs index dbb104fe..67b07864 100644 --- a/src/ext/UI/wixlib/BrowseDlg.wxs +++ b/src/ext/UI/wixlib/BrowseDlg.wxs | |||
@@ -6,10 +6,7 @@ | |||
6 | <UI> | 6 | <UI> |
7 | <Dialog Id="BrowseDlg" Width="370" Height="270" Title="!(loc.BrowseDlg_Title)"> | 7 | <Dialog Id="BrowseDlg" Width="370" Height="270" Title="!(loc.BrowseDlg_Title)"> |
8 | <Control Id="PathEdit" Type="PathEdit" X="25" Y="202" Width="320" Height="18" Property="_BrowseProperty" Indirect="yes" /> | 8 | <Control Id="PathEdit" Type="PathEdit" X="25" Y="202" Width="320" Height="18" Property="_BrowseProperty" Indirect="yes" /> |
9 | <Control Id="OK" Type="PushButton" X="240" Y="243" Width="56" Height="17" Default="yes" Text="!(loc.WixUIOK)"> | 9 | <Control Id="OK" Type="PushButton" X="240" Y="243" Width="56" Height="17" Default="yes" Text="!(loc.WixUIOK)" /> |
10 | <Publish Event="SetTargetPath" Value="[_BrowseProperty]" /> | ||
11 | <Publish Event="EndDialog" Value="Return" /> | ||
12 | </Control> | ||
13 | <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Cancel="yes" Text="!(loc.WixUICancel)"> | 10 | <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Cancel="yes" Text="!(loc.WixUICancel)"> |
14 | <Publish Event="Reset" Value="0" /> | 11 | <Publish Event="Reset" Value="0" /> |
15 | <Publish Event="EndDialog" Value="Return" /> | 12 | <Publish Event="EndDialog" Value="Return" /> |